You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: abacusai/api_class/batch_prediction.py
+2
Original file line number
Diff line number
Diff line change
@@ -124,10 +124,12 @@ class PretrainedModelsBatchPredictionArgs(BatchPredictionArgs):
124
124
125
125
Args:
126
126
for_eval (bool): If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
127
+
files_input_location (str): The input location for the files.
127
128
files_output_location_prefix (str): The output location prefix for the files.
128
129
channel_id_to_label_map (str): JSON string for the map from channel ids to their labels.
Copy file name to clipboardExpand all lines: abacusai/api_class/model.py
-2
Original file line number
Diff line number
Diff line change
@@ -487,7 +487,6 @@ class ChatLLMTrainingConfig(TrainingConfig):
487
487
json_response_instructions (str): Instructions to be followed while generating the json_response if `response_format` is set to "JSON". This can include the schema information if the schema is dynamic and its keys cannot be pre-determined.
488
488
json_response_schema (str): Specifies the JSON schema that the model should adhere to if `response_format` is set to "JSON". This should be a json-formatted string where each field of the expected schema is mapped to a dictionary containing the fields 'type', 'required' and 'description'. For example - '{"sample_field": {"type": "integer", "required": true, "description": "Sample Field"}}'
489
489
mask_pii (bool): Mask PII in the prompts and uploaded documents before sending it to the LLM.
490
-
custom_tools (List[str]): List of custom tool names to be used in the chat.
Copy file name to clipboardExpand all lines: docs/_sources/autoapi/abacusai/api_class/batch_prediction/index.rst.txt
+8
Original file line number
Diff line number
Diff line change
@@ -312,6 +312,8 @@ Module Contents
312
312
313
313
:param for_eval: If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
314
314
:type for_eval: bool
315
+
:param files_input_location: The input location for the files.
316
+
:type files_input_location: str
315
317
:param files_output_location_prefix: The output location prefix for the files.
316
318
:type files_output_location_prefix: str
317
319
:param channel_id_to_label_map: JSON string for the map from channel ids to their labels.
Copy file name to clipboardExpand all lines: docs/_sources/autoapi/abacusai/api_class/index.rst.txt
+13-8
Original file line number
Diff line number
Diff line change
@@ -1468,6 +1468,8 @@ Package Contents
1468
1468
1469
1469
:param for_eval: If True, the test fold which was created during training and used for metrics calculation will be used as input data. These predictions are hence, used for model evaluation.
1470
1470
:type for_eval: bool
1471
+
:param files_input_location: The input location for the files.
1472
+
:type files_input_location: str
1471
1473
:param files_output_location_prefix: The output location prefix for the files.
1472
1474
:type files_output_location_prefix: str
1473
1475
:param channel_id_to_label_map: JSON string for the map from channel ids to their labels.
@@ -1480,6 +1482,12 @@ Package Contents
1480
1482
1481
1483
1482
1484
1485
+
.. py:attribute:: files_input_location
1486
+
:type: str
1487
+
:value: None
1488
+
1489
+
1490
+
1483
1491
.. py:attribute:: files_output_location_prefix
1484
1492
:type: str
1485
1493
:value: None
@@ -6477,6 +6485,11 @@ Package Contents
6477
6485
6478
6486
6479
6487
6488
+
.. py:attribute::SUPER_AGENT
6489
+
:value: 'SUPER_AGENT'
6490
+
6491
+
6492
+
6480
6493
.. py:class:: AgentClientType
6481
6494
6482
6495
Bases: :py:obj:`ApiEnum`
@@ -8841,8 +8854,6 @@ Package Contents
8841
8854
:type json_response_schema: str
8842
8855
:param mask_pii: Mask PII in the prompts and uploaded documents before sending it to the LLM.
8843
8856
:type mask_pii: bool
8844
-
:param custom_tools: List of custom tool names to be used in the chat.
0 commit comments