PromptTemplate
Properties
Name |
Type |
Description |
Notes |
|
|
|
|
Example
from deepsearch.cps.apis.public_v2.models.prompt_template import PromptTemplate
# TODO update the JSON string below
json = "{}"
# create an instance of PromptTemplate from a JSON string
prompt_template_instance = PromptTemplate.from_json(json)
# print the JSON string representation of the object
print(PromptTemplate.to_json())
# convert the object into a dict
prompt_template_dict = prompt_template_instance.to_dict()
# create an instance of PromptTemplate from a dict
prompt_template_form_dict = prompt_template.from_dict(prompt_template_dict)
[Back to Model list] [Back to API list] [Back to README]