ListLLMsResponse
ListLLMsResponse documentation for Python SDK
Response containing a list of LLM configurations
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| llms | List[LLMResponse] | List of LLM configurations matching the request filters |
Example
from goodmem_client.models.list_llms_response import ListLLMsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListLLMsResponse from a JSON string
list_llms_response_instance = ListLLMsResponse.from_json(json)
# print the JSON string representation of the object
print(ListLLMsResponse.to_json())
# convert the object into a dict
list_llms_response_dict = list_llms_response_instance.to_dict()
# create an instance of ListLLMsResponse from a dict
list_llms_response_from_dict = ListLLMsResponse.from_dict(list_llms_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK