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
Represents an LLM agent node in an Agent workflow graph. The LLM Agent Node can be initialized using either chatbot_deployment_id or creation_parameters.
741
+
The presence of chatbot_deployment_id indicates that the LLM agent node has already been trained and deployed. During creation of an LLM Node using AI Engineer or deepagent.
742
+
The chatbot_deployment_id is always passed as None pre-training.
743
+
chatbot_paramters may contain training_config such as builtin tools, document_retrievers, behaviour instructions etc.
Copy file name to clipboardExpand all lines: abacusai/dataset.py
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ class Dataset(AbstractApiClass):
36
36
mergeFileSchemas (bool): If the merge file schemas policy is enabled.
37
37
referenceOnlyDocumentset (bool): Signifies whether to save the data reference only. Only valid if is_documentset if True.
38
38
versionLimit (int): Version limit for the dataset.
39
+
disableRealtimeContentProcessing (bool): Whether realtime content processing is disabled for this dataset (only applicable to REALTIME_CONTENT_STORE datasets).
39
40
latestDatasetVersion (DatasetVersion): The latest version of this dataset.
40
41
schema (DatasetColumn): List of resolved columns.
41
42
refreshSchedules (RefreshSchedule): List of schedules that determines when the next version of the dataset will be created.
@@ -44,7 +45,7 @@ class Dataset(AbstractApiClass):
44
45
attachmentParsingConfig (AttachmentParsingConfig): The attachment parsing config used for dataset (eg. for salesforce attachment parsing)
Copy file name to clipboardExpand all lines: docs/_sources/autoapi/abacusai/api_class/ai_agents/index.rst.txt
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -570,6 +570,9 @@ Module Contents
570
570
571
571
572
572
Represents an LLM agent node in an Agent workflow graph. The LLM Agent Node can be initialized using either chatbot_deployment_id or creation_parameters.
573
+
The presence of chatbot_deployment_id indicates that the LLM agent node has already been trained and deployed. During creation of an LLM Node using AI Engineer or deepagent.
574
+
The chatbot_deployment_id is always passed as None pre-training.
575
+
chatbot_paramters may contain training_config such as builtin tools, document_retrievers, behaviour instructions etc.
573
576
574
577
:param name: A unique name for the LLM agent node.
0 commit comments