Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

PromptsCreateRequest

Properties

Name Type Description Notes
project_id int
prompts List[str]
country_code str
language_code str

Example

from llmpulse.models.prompts_create_request import PromptsCreateRequest

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

# convert the object into a dict
prompts_create_request_dict = prompts_create_request_instance.to_dict()
# create an instance of PromptsCreateRequest from a dict
prompts_create_request_from_dict = PromptsCreateRequest.from_dict(prompts_create_request_dict)

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