| Name | Type | Description | Notes |
|---|---|---|---|
| model | str | The model name | |
| prompt | str | The prompt text | |
| stream | bool | [optional] | |
| system | str | [optional] | |
| suffix | str | [optional] | |
| format | Dict[str, object] | [optional] | |
| keep_alive | KeepAlive | [optional] | |
| options | OllamaRequestOptions | [optional] |
from cms_client.models.ollama_generate_request import OllamaGenerateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of OllamaGenerateRequest from a JSON string
ollama_generate_request_instance = OllamaGenerateRequest.from_json(json)
# print the JSON string representation of the object
print(OllamaGenerateRequest.to_json())
# convert the object into a dict
ollama_generate_request_dict = ollama_generate_request_instance.to_dict()
# create an instance of OllamaGenerateRequest from a dict
ollama_generate_request_from_dict = OllamaGenerateRequest.from_dict(ollama_generate_request_dict)