Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 974 Bytes

File metadata and controls

30 lines (21 loc) · 974 Bytes

OllamaShowRequest

Properties

Name Type Description Notes
model str The model name
verbose bool [optional]

Example

from cms_client.models.ollama_show_request import OllamaShowRequest

# TODO update the JSON string below
json = "{}"
# create an instance of OllamaShowRequest from a JSON string
ollama_show_request_instance = OllamaShowRequest.from_json(json)
# print the JSON string representation of the object
print(OllamaShowRequest.to_json())

# convert the object into a dict
ollama_show_request_dict = ollama_show_request_instance.to_dict()
# create an instance of OllamaShowRequest from a dict
ollama_show_request_from_dict = OllamaShowRequest.from_dict(ollama_show_request_dict)

[Back to Model list] [Back to API list] [Back to README]