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/model.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -490,6 +490,7 @@ class ChatLLMTrainingConfig(TrainingConfig):
490
490
search_score_cutoff (float): Minimum search score to consider a document as a valid search result.
491
491
include_bm25_retrieval (bool): Combine BM25 search score with vector search using reciprocal rank fusion.
492
492
database_connector_id (str): Database connector ID to use for connecting external database that gives access to structured data to the LLM.
493
+
database_connector_ids (List[str]): List of database connector IDs to use for connecting external databases that give access to structured data to the LLM.
493
494
database_connector_tables (List[str]): List of tables to use from the database connector for the ChatLLM.
494
495
enable_code_execution (bool): Enable python code execution in the ChatLLM. This equips the LLM with a python kernel in which all its code is executed.
495
496
enable_response_caching (bool): Enable caching of LLM responses to speed up response times and improve reproducibility.
@@ -527,7 +528,8 @@ class ChatLLMTrainingConfig(TrainingConfig):
deployment_token (str): The deployment token used to authenticate access to created deployments. This token is only authorized to predict on deployments in this project, so it is safe to embed this model within an application or website.
7910
-
deployment_id (str): A unique identifier to a deployment created under the project.
7911
-
query_data (dict): Specifies the text prompt. For example, {'prompt': 'a cat'}"""
7912
-
prediction_url = self._get_prediction_endpoint(
7913
-
deployment_id, deployment_token) if deployment_token else None
deployment_token (str): The deployment token used to authenticate access to created deployments. This token is only authorized to predict on deployments in this project, so it is safe to embed this model within an application or website.
680
-
deployment_id (str): A unique identifier to a deployment created under the project.
681
-
query_data (dict): Specifies the text prompt. For example, {'prompt': 'a cat'}"""
0 commit comments