File tree Expand file tree Collapse file tree 6 files changed +9
-19
lines changed
libs/labelbox/src/labelbox Expand file tree Collapse file tree 6 files changed +9
-19
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,15 @@ Labelbox Python SDK Documentation
4040 pagination
4141 project
4242 project-model-config
43+ prompt-issue-tool
4344 quality-mode
4445 request-client
4546 resource-tag
4647 review
4748 search-filters
4849 send-to-annotate-params
4950 slice
50- step_reasoning_tool
51+ step-reasoning-tool
5152 task
5253 task-queue
5354 user
Original file line number Diff line number Diff line change 1+ Step Reasoning Tool
2+ ===============================================================================================
3+
4+ .. automodule :: labelbox.schema.tool_building.prompt_issue_tool
5+ :members:
6+ :show-inheritance:
File renamed without changes.
Original file line number Diff line number Diff line change 4646from labelbox .schema .model_config import ModelConfig
4747from labelbox .schema .model_run import DataSplit , ModelRun
4848from labelbox .schema .ontology import (
49- Classification ,
5049 FeatureSchema ,
5150 Ontology ,
5251 OntologyBuilder ,
53- PromptResponseClassification ,
5452 Tool ,
5553)
5654from labelbox .schema .tool_building .fact_checking_tool import FactCheckingTool
9795 Classification ,
9896 Option ,
9997 ResponseOption ,
98+ PromptResponseClassification ,
10099)
Original file line number Diff line number Diff line change @@ -79,10 +79,6 @@ class _BaseStepReasoningTool(ABC):
7979 required : bool = False
8080
8181 def __post_init__ (self ):
82- warnings .warn (
83- "This feature is experimental and subject to change." ,
84- )
85-
8682 if not self .name .strip ():
8783 raise ValueError ("Name is required" )
8884
Original file line number Diff line number Diff line change @@ -61,18 +61,6 @@ def build_fact_checking_definition():
6161 return _Definition (variants = variants )
6262
6363
64- class UnsupportedStepActions (Enum ):
65- WRITE_JUSTIFICATION = "writeJustification"
66-
67-
68- class CanConfidentlyAssessStepActions (Enum ):
69- WRITE_JUSTIFICATION = "writeJustification"
70-
71-
72- class NoFactualInformationStepActions (Enum ):
73- WRITE_JUSTIFICATION = "writeJustification"
74-
75-
7664@dataclass
7765class FactCheckingTool (_BaseStepReasoningTool ):
7866 """
You can’t perform that action at this time.
0 commit comments