Skip to content

GenAIPartialParams

Properties

Name Type Description Notes
model_id str [optional]
prompt_template str [optional]
params object [optional]
timeout float [optional]

Example

from deepsearch.cps.apis.public_v2.models.gen_ai_partial_params import GenAIPartialParams

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

# convert the object into a dict
gen_ai_partial_params_dict = gen_ai_partial_params_instance.to_dict()
# create an instance of GenAIPartialParams from a dict
gen_ai_partial_params_form_dict = gen_ai_partial_params.from_dict(gen_ai_partial_params_dict)
[Back to Model list] [Back to API list] [Back to README]