You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Public HTTP(S) URL with a DNS hostname or public IP address. Credentials, private and special IP addresses, localhost and internal hostnames are rejected.
main_country
str
main_language
str
use_subdomain
bool
[optional] [default to False]
suggest
bool
[optional] [default to True]
execute_prompts_immediately
bool
[optional] [default to True]
Example
fromllmpulse.models.create_project_draft_requestimportCreateProjectDraftRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateProjectDraftRequest from a JSON stringcreate_project_draft_request_instance=CreateProjectDraftRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateProjectDraftRequest.to_json())
# convert the object into a dictcreate_project_draft_request_dict=create_project_draft_request_instance.to_dict()
# create an instance of CreateProjectDraftRequest from a dictcreate_project_draft_request_from_dict=CreateProjectDraftRequest.from_dict(create_project_draft_request_dict)