@@ -15,9 +15,10 @@ class ChatllmProject(AbstractApiClass):
1515 updatedAt (str): The update time of the chatllm project.
1616 verticalType (str): The vertical type (HEALTH or null for regular projects).
1717 preferences (dict): The preferences JSON for vertical projects.
18+ orchestratorDeploymentConversationId (id): The ID of the orchestrator deployment conversation.
1819 """
1920
20- def __init__ (self , client , chatllmProjectId = None , name = None , description = None , customInstructions = None , createdAt = None , updatedAt = None , verticalType = None , preferences = None ):
21+ def __init__ (self , client , chatllmProjectId = None , name = None , description = None , customInstructions = None , createdAt = None , updatedAt = None , verticalType = None , preferences = None , orchestratorDeploymentConversationId = None ):
2122 super ().__init__ (client , chatllmProjectId )
2223 self .chatllm_project_id = chatllmProjectId
2324 self .name = name
@@ -27,11 +28,12 @@ def __init__(self, client, chatllmProjectId=None, name=None, description=None, c
2728 self .updated_at = updatedAt
2829 self .vertical_type = verticalType
2930 self .preferences = preferences
31+ self .orchestrator_deployment_conversation_id = orchestratorDeploymentConversationId
3032 self .deprecated_keys = {}
3133
3234 def __repr__ (self ):
33- repr_dict = {f'chatllm_project_id' : repr (self .chatllm_project_id ), f'name' : repr (self .name ), f'description' : repr (self .description ), f'custom_instructions' : repr (
34- self .custom_instructions ), f'created_at ' : repr (self .created_at ), f'updated_at ' : repr (self .updated_at ), f'vertical_type ' : repr (self .vertical_type ), f'preferences ' : repr (self .preferences )}
35+ repr_dict = {f'chatllm_project_id' : repr (self .chatllm_project_id ), f'name' : repr (self .name ), f'description' : repr (self .description ), f'custom_instructions' : repr (self . custom_instructions ), f'created_at' : repr (
36+ self .created_at ), f'updated_at ' : repr (self .updated_at ), f'vertical_type ' : repr (self .vertical_type ), f'preferences ' : repr (self .preferences ), f'orchestrator_deployment_conversation_id ' : repr (self .orchestrator_deployment_conversation_id )}
3537 class_name = "ChatllmProject"
3638 repr_str = ',\n ' .join ([f'{ key } ={ value } ' for key , value in repr_dict .items (
3739 ) if getattr (self , key , None ) is not None and key not in self .deprecated_keys ])
@@ -44,6 +46,6 @@ def to_dict(self):
4446 Returns:
4547 dict: The dict value representation of the class parameters
4648 """
47- resp = {'chatllm_project_id' : self .chatllm_project_id , 'name' : self .name , 'description' : self .description , 'custom_instructions' : self .custom_instructions ,
48- 'created_at ' : self .created_at , 'updated_at ' : self .updated_at , 'vertical_type ' : self .vertical_type , 'preferences ' : self .preferences }
49+ resp = {'chatllm_project_id' : self .chatllm_project_id , 'name' : self .name , 'description' : self .description , 'custom_instructions' : self .custom_instructions , 'created_at' : self . created_at ,
50+ 'updated_at ' : self .updated_at , 'vertical_type ' : self .vertical_type , 'preferences ' : self .preferences , 'orchestrator_deployment_conversation_id ' : self .orchestrator_deployment_conversation_id }
4951 return {key : value for key , value in resp .items () if value is not None and key not in self .deprecated_keys }
0 commit comments