Some checks failed
ai_core_api_client Python package / build (3.10) (push) Failing after 1m16s
ai_core_api_client Python package / build (3.11) (push) Failing after 1m14s
ai_core_api_client Python package / build (3.12) (push) Failing after 5s
ai_core_api_client Python package / build (3.13) (push) Failing after 5s
ai_core_api_client Python package / build (3.9) (push) Failing after 5s
1.2 KiB
1.2 KiB
DomainConversationResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| content | str | [optional] | |
| tools | List[DomainAITool] | [optional] | |
| usage | DomainUsageInfo | [optional] |
Example
from ai_core_api_client.models.domain_conversation_response import DomainConversationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DomainConversationResponse from a JSON string
domain_conversation_response_instance = DomainConversationResponse.from_json(json)
# print the JSON string representation of the object
print(DomainConversationResponse.to_json())
# convert the object into a dict
domain_conversation_response_dict = domain_conversation_response_instance.to_dict()
# create an instance of DomainConversationResponse from a dict
domain_conversation_response_from_dict = DomainConversationResponse.from_dict(domain_conversation_response_dict)