CreateLLMResponse
CreateLLMResponse documentation for Python SDK
Response containing the created LLM and any informational status messages
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| llm | LLMResponse | ||
| statuses | List[GoodMemStatus] | Optional status messages providing information about server-side operations performed during creation, such as capability inference results | [optional] |
Example
from goodmem_client.models.create_llm_response import CreateLLMResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateLLMResponse from a JSON string
create_llm_response_instance = CreateLLMResponse.from_json(json)
# print the JSON string representation of the object
print(CreateLLMResponse.to_json())
# convert the object into a dict
create_llm_response_dict = create_llm_response_instance.to_dict()
# create an instance of CreateLLMResponse from a dict
create_llm_response_from_dict = CreateLLMResponse.from_dict(create_llm_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK