GoodMem
ReferenceClient SDKsPython SDKResponses

ListLLMsResponse

ListLLMsResponse documentation for Python SDK

Response containing a list of LLM configurations

Properties

NameTypeDescriptionNotes
llmsList[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

On this page