| Name |
Type |
Description |
Notes |
| project_id |
int |
|
|
| name |
str |
|
|
| description |
str |
|
[optional] |
| prompt_ids |
List[int] |
|
[optional] |
from llmpulse.models.create_collection_request import CreateCollectionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCollectionRequest from a JSON string
create_collection_request_instance = CreateCollectionRequest.from_json(json)
# print the JSON string representation of the object
print(CreateCollectionRequest.to_json())
# convert the object into a dict
create_collection_request_dict = create_collection_request_instance.to_dict()
# create an instance of CreateCollectionRequest from a dict
create_collection_request_from_dict = CreateCollectionRequest.from_dict(create_collection_request_dict)
[Back to Model list] [Back to API list] [Back to README]