| Name |
Type |
Description |
Notes |
| project_id |
int |
|
|
| prompts |
List[str] |
|
|
| country_code |
str |
|
|
| language_code |
str |
|
|
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]