trieve_python_client


Nametrieve_python_client JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/GIT_USER_ID/GIT_REPO_ID
Summarytrieve-server
upload_time2024-01-25 18:13:10
maintainer
docs_urlNone
authorOpenAPI Generator Community
requires_python>=3.7,<4.0
license
keywords openapi openapi-generator trieve-server
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # trieve-python-client
Trieve REST API OpenAPI Documentation

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.7+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:
```python
import trieve_python_client
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import trieve_python_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import trieve_python_client
from trieve_python_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = trieve_python_client.Configuration(
    host = "http://localhost"
)



# Enter a context with an instance of the API client
with trieve_python_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = trieve_python_client.AuthApi(api_client)

    try:
        # openid_callback
        api_response = api_instance.callback()
        print("The response of AuthApi->callback:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AuthApi->callback: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AuthApi* | [**callback**](docs/AuthApi.md#callback) | **GET** /api/auth/callback | openid_callback
*AuthApi* | [**get_me**](docs/AuthApi.md#get_me) | **GET** /api/auth/me | get_me
*AuthApi* | [**login**](docs/AuthApi.md#login) | **GET** /api/auth | login
*AuthApi* | [**logout**](docs/AuthApi.md#logout) | **DELETE** /api/auth | logout
*ChunkApi* | [**create_chunk**](docs/ChunkApi.md#create_chunk) | **POST** /api/chunk | create_chunk
*ChunkApi* | [**create_suggested_queries_handler**](docs/ChunkApi.md#create_suggested_queries_handler) | **POST** /api/chunk/gen_suggestions | get_suggested_queries
*ChunkApi* | [**delete_chunk**](docs/ChunkApi.md#delete_chunk) | **DELETE** /api/chunk/{chunk_id} | delete_chunk
*ChunkApi* | [**delete_chunk_by_tracking_id**](docs/ChunkApi.md#delete_chunk_by_tracking_id) | **DELETE** /api/chunk/tracking_id/{tracking_id} | delete_chunk_by_tracking_id
*ChunkApi* | [**generate_off_chunks**](docs/ChunkApi.md#generate_off_chunks) | **POST** /api/chunk/generate | generate_off_chunks
*ChunkApi* | [**get_chunk_by_id**](docs/ChunkApi.md#get_chunk_by_id) | **GET** /api/chunk/{chunk_id} | get_chunk
*ChunkApi* | [**get_chunk_by_tracking_id**](docs/ChunkApi.md#get_chunk_by_tracking_id) | **GET** /api/chunk/tracking_id/{tracking_id} | get_chunk_by_tracking_id
*ChunkApi* | [**get_recommended_chunks**](docs/ChunkApi.md#get_recommended_chunks) | **POST** /api/chunk/recommend | get_recommended_chunks
*ChunkApi* | [**search_chunk**](docs/ChunkApi.md#search_chunk) | **POST** /api/chunk/search | search
*ChunkApi* | [**update_chunk**](docs/ChunkApi.md#update_chunk) | **PUT** /api/chunk/update | update_chunk
*ChunkApi* | [**update_chunk_by_tracking_id**](docs/ChunkApi.md#update_chunk_by_tracking_id) | **PUT** /api/chunk/tracking_id/update | update_chunk_by_tracking_id
*ChunkCollectionApi* | [**add_bookmark**](docs/ChunkCollectionApi.md#add_bookmark) | **POST** /api/chunk_collection/{collection_id} | add_bookmark
*ChunkCollectionApi* | [**create_chunk_collection**](docs/ChunkCollectionApi.md#create_chunk_collection) | **POST** /api/chunk_collection | create_chunk_collection
*ChunkCollectionApi* | [**delete_bookmark**](docs/ChunkCollectionApi.md#delete_bookmark) | **DELETE** /api/bookmark/{collection_id}/{bookmark_id} | delete_bookmark
*ChunkCollectionApi* | [**delete_chunk_collection**](docs/ChunkCollectionApi.md#delete_chunk_collection) | **DELETE** /api/chunk_collection/{collection_id} | delete_chunk_collection
*ChunkCollectionApi* | [**get_all_bookmarks**](docs/ChunkCollectionApi.md#get_all_bookmarks) | **GET** /api/chunk_collection/{collection_id}/{page} | get_all_bookmarks
*ChunkCollectionApi* | [**get_collections_chunk_is_in**](docs/ChunkCollectionApi.md#get_collections_chunk_is_in) | **POST** /api/chunk_collection/bookmark | 
*ChunkCollectionApi* | [**get_logged_in_user_chunk_collections**](docs/ChunkCollectionApi.md#get_logged_in_user_chunk_collections) | **GET** /api/chunk_collection/{page} | get_current_user_collections
*ChunkCollectionApi* | [**get_specific_user_chunk_collections**](docs/ChunkCollectionApi.md#get_specific_user_chunk_collections) | **GET** /api/user/collections/{user_id}/{page} | get_user_collections
*ChunkCollectionApi* | [**search_collections**](docs/ChunkCollectionApi.md#search_collections) | **POST** /api/chunk_collection/search | collection_search
*ChunkCollectionApi* | [**update_chunk_collection**](docs/ChunkCollectionApi.md#update_chunk_collection) | **PUT** /api/chunk_collection | update_chunk_collection
*DatasetApi* | [**create_dataset**](docs/DatasetApi.md#create_dataset) | **POST** /api/dataset | create_dataset
*DatasetApi* | [**delete_dataset**](docs/DatasetApi.md#delete_dataset) | **DELETE** /api/dataset | delete_dataset
*DatasetApi* | [**get_client_dataset_config**](docs/DatasetApi.md#get_client_dataset_config) | **GET** /api/dataset/envs | get_client_dataset_config
*DatasetApi* | [**get_dataset**](docs/DatasetApi.md#get_dataset) | **GET** /api/dataset/{dataset_id} | get_dataset
*DatasetApi* | [**get_datasets_from_organization**](docs/DatasetApi.md#get_datasets_from_organization) | **GET** /api/dataset/organization/{organization_id} | get_organization_datasets
*DatasetApi* | [**update_dataset**](docs/DatasetApi.md#update_dataset) | **PUT** /api/dataset | update_dataset
*FileApi* | [**delete_file_handler**](docs/FileApi.md#delete_file_handler) | **DELETE** /api/file/{file_id} | delete_file
*FileApi* | [**get_file_handler**](docs/FileApi.md#get_file_handler) | **GET** /api/file/{file_id} | get_file
*FileApi* | [**get_image_file**](docs/FileApi.md#get_image_file) | **GET** /api/image/{file_name} | get_image_file
*FileApi* | [**upload_file_handler**](docs/FileApi.md#upload_file_handler) | **POST** /api/file | upload_file
*HealthApi* | [**health_check**](docs/HealthApi.md#health_check) | **GET** /api/health | 
*InvitationApi* | [**post_invitation**](docs/InvitationApi.md#post_invitation) | **POST** /api/invitation | send_invitation
*MessageApi* | [**create_message_completion_handler**](docs/MessageApi.md#create_message_completion_handler) | **POST** /api/message | create_message
*MessageApi* | [**edit_message_handler**](docs/MessageApi.md#edit_message_handler) | **PUT** /api/message | edit_message
*MessageApi* | [**get_all_topic_messages**](docs/MessageApi.md#get_all_topic_messages) | **GET** /api/messages/{messages_topic_id} | get_all_messages
*MessageApi* | [**regenerate_message_handler**](docs/MessageApi.md#regenerate_message_handler) | **DELETE** /api/message | regenerate_message
*NotificationsApi* | [**get_notifications**](docs/NotificationsApi.md#get_notifications) | **GET** /api/notifications/{page} | get_notifications
*NotificationsApi* | [**mark_all_notifications_as_read**](docs/NotificationsApi.md#mark_all_notifications_as_read) | **PUT** /api/notifications_readall | mark_all_read
*NotificationsApi* | [**mark_notification_as_read**](docs/NotificationsApi.md#mark_notification_as_read) | **PUT** /api/notifications | mark_read
*OrganizationApi* | [**create_organization**](docs/OrganizationApi.md#create_organization) | **POST** /api/organization | create_organization
*OrganizationApi* | [**get_organization_by_id**](docs/OrganizationApi.md#get_organization_by_id) | **GET** /api/organization/{organization_id} | get_organization
*OrganizationApi* | [**get_organization_usage**](docs/OrganizationApi.md#get_organization_usage) | **GET** /api/organization/usage/{organization_id} | get_organization_usage
*OrganizationApi* | [**get_organization_users**](docs/OrganizationApi.md#get_organization_users) | **GET** /api/organization/users/{organization_id} | get_organization_users
*OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PUT** /api/organization | update_organization
*StripeApi* | [**cancel_subscription**](docs/StripeApi.md#cancel_subscription) | **DELETE** /api/stripe/subscription/{subscription_id} | 
*StripeApi* | [**direct_to_payment_link**](docs/StripeApi.md#direct_to_payment_link) | **GET** /api/stripe/payment_link/{plan_id}/{organization_id} | 
*StripeApi* | [**get_all_plans**](docs/StripeApi.md#get_all_plans) | **GET** /api/stripe/plans | 
*StripeApi* | [**update_subscription_plan**](docs/StripeApi.md#update_subscription_plan) | **PATCH** /api/stripe/subscription_plan/{subscription_id}/{plan_id} | 
*TopicApi* | [**create_topic**](docs/TopicApi.md#create_topic) | **POST** /api/topic | create_topic
*TopicApi* | [**delete_topic**](docs/TopicApi.md#delete_topic) | **DELETE** /api/topic | delete_topic
*TopicApi* | [**get_all_topics**](docs/TopicApi.md#get_all_topics) | **GET** /api/topic | get_all_topics
*TopicApi* | [**update_topic**](docs/TopicApi.md#update_topic) | **PUT** /api/topic | update_topic
*UserApi* | [**delete_user_api_key**](docs/UserApi.md#delete_user_api_key) | **DELETE** /api/user/delete_api_key | delete_user_api_key
*UserApi* | [**get_user_files_handler**](docs/UserApi.md#get_user_files_handler) | **GET** /api/user/files/{user_id} | get_user_files
*UserApi* | [**get_user_with_chunks_by_id**](docs/UserApi.md#get_user_with_chunks_by_id) | **GET** /api/user/{user_id}/{page} | get_user_chunks
*UserApi* | [**set_user_api_key**](docs/UserApi.md#set_user_api_key) | **POST** /api/user/set_api_key | set_user_api_key
*UserApi* | [**update_user**](docs/UserApi.md#update_user) | **PUT** /api/user | update_user


## Documentation For Models

 - [AddChunkToCollectionData](docs/AddChunkToCollectionData.md)
 - [ApiKeyDTO](docs/ApiKeyDTO.md)
 - [AuthData](docs/AuthData.md)
 - [BookmarkChunks](docs/BookmarkChunks.md)
 - [BookmarkCollectionResult](docs/BookmarkCollectionResult.md)
 - [BookmarkData](docs/BookmarkData.md)
 - [ChatMessageProxy](docs/ChatMessageProxy.md)
 - [ChunkCollection](docs/ChunkCollection.md)
 - [ChunkCollectionAndFile](docs/ChunkCollectionAndFile.md)
 - [ChunkMetadata](docs/ChunkMetadata.md)
 - [ChunkMetadataWithFileData](docs/ChunkMetadataWithFileData.md)
 - [ClientDatasetConfiguration](docs/ClientDatasetConfiguration.md)
 - [CollectionData](docs/CollectionData.md)
 - [CreateChunkCollectionData](docs/CreateChunkCollectionData.md)
 - [CreateChunkData](docs/CreateChunkData.md)
 - [CreateDatasetRequest](docs/CreateDatasetRequest.md)
 - [CreateMessageData](docs/CreateMessageData.md)
 - [CreateOrganizationData](docs/CreateOrganizationData.md)
 - [CreateTopicData](docs/CreateTopicData.md)
 - [Dataset](docs/Dataset.md)
 - [DatasetAndOrgWithSubAndPlan](docs/DatasetAndOrgWithSubAndPlan.md)
 - [DatasetAndUsage](docs/DatasetAndUsage.md)
 - [DatasetDTO](docs/DatasetDTO.md)
 - [DatasetUsageCount](docs/DatasetUsageCount.md)
 - [DefaultError](docs/DefaultError.md)
 - [DeleteBookmarkPathData](docs/DeleteBookmarkPathData.md)
 - [DeleteCollectionData](docs/DeleteCollectionData.md)
 - [DeleteDatasetRequest](docs/DeleteDatasetRequest.md)
 - [DeleteTopicData](docs/DeleteTopicData.md)
 - [DeleteUserApiKeyRequest](docs/DeleteUserApiKeyRequest.md)
 - [EditMessageData](docs/EditMessageData.md)
 - [File](docs/File.md)
 - [FileDTO](docs/FileDTO.md)
 - [FileUploadCompletedNotificationWithName](docs/FileUploadCompletedNotificationWithName.md)
 - [GenerateChunksRequest](docs/GenerateChunksRequest.md)
 - [GenerateOffCollectionData](docs/GenerateOffCollectionData.md)
 - [GetAllBookmarksData](docs/GetAllBookmarksData.md)
 - [GetCollectionsForChunksData](docs/GetCollectionsForChunksData.md)
 - [GetDirectPaymentLinkData](docs/GetDirectPaymentLinkData.md)
 - [GetUserWithChunksData](docs/GetUserWithChunksData.md)
 - [InvitationData](docs/InvitationData.md)
 - [Message](docs/Message.md)
 - [Notification](docs/Notification.md)
 - [NotificationId](docs/NotificationId.md)
 - [NotificationReturn](docs/NotificationReturn.md)
 - [Organization](docs/Organization.md)
 - [OrganizationUsageCount](docs/OrganizationUsageCount.md)
 - [OrganizationWithSubAndPlan](docs/OrganizationWithSubAndPlan.md)
 - [RecommendChunksRequest](docs/RecommendChunksRequest.md)
 - [RegenerateMessageData](docs/RegenerateMessageData.md)
 - [ReturnCreatedChunk](docs/ReturnCreatedChunk.md)
 - [ScoreChunkDTO](docs/ScoreChunkDTO.md)
 - [SearchChunkData](docs/SearchChunkData.md)
 - [SearchChunkDataTimeRangeInner](docs/SearchChunkDataTimeRangeInner.md)
 - [SearchChunkDataWeightsInner](docs/SearchChunkDataWeightsInner.md)
 - [SearchChunkQueryResponseBody](docs/SearchChunkQueryResponseBody.md)
 - [SearchCollectionsData](docs/SearchCollectionsData.md)
 - [SearchCollectionsResult](docs/SearchCollectionsResult.md)
 - [SetUserApiKeyRequest](docs/SetUserApiKeyRequest.md)
 - [SetUserApiKeyResponse](docs/SetUserApiKeyResponse.md)
 - [SlimCollection](docs/SlimCollection.md)
 - [SlimUser](docs/SlimUser.md)
 - [StripePlan](docs/StripePlan.md)
 - [StripeSubscription](docs/StripeSubscription.md)
 - [SuggestedQueriesRequest](docs/SuggestedQueriesRequest.md)
 - [SuggestedQueriesResponse](docs/SuggestedQueriesResponse.md)
 - [Topic](docs/Topic.md)
 - [UpdateChunkByTrackingIdData](docs/UpdateChunkByTrackingIdData.md)
 - [UpdateChunkCollectionData](docs/UpdateChunkCollectionData.md)
 - [UpdateChunkData](docs/UpdateChunkData.md)
 - [UpdateDatasetRequest](docs/UpdateDatasetRequest.md)
 - [UpdateOrganizationData](docs/UpdateOrganizationData.md)
 - [UpdateSubscriptionData](docs/UpdateSubscriptionData.md)
 - [UpdateTopicData](docs/UpdateTopicData.md)
 - [UpdateUserData](docs/UpdateUserData.md)
 - [UploadFileData](docs/UploadFileData.md)
 - [UploadFileResult](docs/UploadFileResult.md)
 - [UserCollectionQuery](docs/UserCollectionQuery.md)
 - [UserDTO](docs/UserDTO.md)
 - [UserDTOWithChunks](docs/UserDTOWithChunks.md)
 - [UserOrganization](docs/UserOrganization.md)
 - [UserRole](docs/UserRole.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization

Endpoints do not require authorization.


## Author





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
    "name": "trieve_python_client",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "OpenAPI,OpenAPI-Generator,trieve-server",
    "author": "OpenAPI Generator Community",
    "author_email": "team@openapitools.org",
    "download_url": "https://files.pythonhosted.org/packages/17/d4/3ce5b5614580f0dbe221fa9a7e8b6a02cdb5892c3177039f0b60dd29d2f6/trieve_python_client-1.0.0.tar.gz",
    "platform": null,
    "description": "# trieve-python-client\nTrieve REST API OpenAPI Documentation\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport trieve_python_client\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport trieve_python_client\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport trieve_python_client\nfrom trieve_python_client.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = trieve_python_client.Configuration(\n    host = \"http://localhost\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith trieve_python_client.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = trieve_python_client.AuthApi(api_client)\n\n    try:\n        # openid_callback\n        api_response = api_instance.callback()\n        print(\"The response of AuthApi->callback:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling AuthApi->callback: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AuthApi* | [**callback**](docs/AuthApi.md#callback) | **GET** /api/auth/callback | openid_callback\n*AuthApi* | [**get_me**](docs/AuthApi.md#get_me) | **GET** /api/auth/me | get_me\n*AuthApi* | [**login**](docs/AuthApi.md#login) | **GET** /api/auth | login\n*AuthApi* | [**logout**](docs/AuthApi.md#logout) | **DELETE** /api/auth | logout\n*ChunkApi* | [**create_chunk**](docs/ChunkApi.md#create_chunk) | **POST** /api/chunk | create_chunk\n*ChunkApi* | [**create_suggested_queries_handler**](docs/ChunkApi.md#create_suggested_queries_handler) | **POST** /api/chunk/gen_suggestions | get_suggested_queries\n*ChunkApi* | [**delete_chunk**](docs/ChunkApi.md#delete_chunk) | **DELETE** /api/chunk/{chunk_id} | delete_chunk\n*ChunkApi* | [**delete_chunk_by_tracking_id**](docs/ChunkApi.md#delete_chunk_by_tracking_id) | **DELETE** /api/chunk/tracking_id/{tracking_id} | delete_chunk_by_tracking_id\n*ChunkApi* | [**generate_off_chunks**](docs/ChunkApi.md#generate_off_chunks) | **POST** /api/chunk/generate | generate_off_chunks\n*ChunkApi* | [**get_chunk_by_id**](docs/ChunkApi.md#get_chunk_by_id) | **GET** /api/chunk/{chunk_id} | get_chunk\n*ChunkApi* | [**get_chunk_by_tracking_id**](docs/ChunkApi.md#get_chunk_by_tracking_id) | **GET** /api/chunk/tracking_id/{tracking_id} | get_chunk_by_tracking_id\n*ChunkApi* | [**get_recommended_chunks**](docs/ChunkApi.md#get_recommended_chunks) | **POST** /api/chunk/recommend | get_recommended_chunks\n*ChunkApi* | [**search_chunk**](docs/ChunkApi.md#search_chunk) | **POST** /api/chunk/search | search\n*ChunkApi* | [**update_chunk**](docs/ChunkApi.md#update_chunk) | **PUT** /api/chunk/update | update_chunk\n*ChunkApi* | [**update_chunk_by_tracking_id**](docs/ChunkApi.md#update_chunk_by_tracking_id) | **PUT** /api/chunk/tracking_id/update | update_chunk_by_tracking_id\n*ChunkCollectionApi* | [**add_bookmark**](docs/ChunkCollectionApi.md#add_bookmark) | **POST** /api/chunk_collection/{collection_id} | add_bookmark\n*ChunkCollectionApi* | [**create_chunk_collection**](docs/ChunkCollectionApi.md#create_chunk_collection) | **POST** /api/chunk_collection | create_chunk_collection\n*ChunkCollectionApi* | [**delete_bookmark**](docs/ChunkCollectionApi.md#delete_bookmark) | **DELETE** /api/bookmark/{collection_id}/{bookmark_id} | delete_bookmark\n*ChunkCollectionApi* | [**delete_chunk_collection**](docs/ChunkCollectionApi.md#delete_chunk_collection) | **DELETE** /api/chunk_collection/{collection_id} | delete_chunk_collection\n*ChunkCollectionApi* | [**get_all_bookmarks**](docs/ChunkCollectionApi.md#get_all_bookmarks) | **GET** /api/chunk_collection/{collection_id}/{page} | get_all_bookmarks\n*ChunkCollectionApi* | [**get_collections_chunk_is_in**](docs/ChunkCollectionApi.md#get_collections_chunk_is_in) | **POST** /api/chunk_collection/bookmark | \n*ChunkCollectionApi* | [**get_logged_in_user_chunk_collections**](docs/ChunkCollectionApi.md#get_logged_in_user_chunk_collections) | **GET** /api/chunk_collection/{page} | get_current_user_collections\n*ChunkCollectionApi* | [**get_specific_user_chunk_collections**](docs/ChunkCollectionApi.md#get_specific_user_chunk_collections) | **GET** /api/user/collections/{user_id}/{page} | get_user_collections\n*ChunkCollectionApi* | [**search_collections**](docs/ChunkCollectionApi.md#search_collections) | **POST** /api/chunk_collection/search | collection_search\n*ChunkCollectionApi* | [**update_chunk_collection**](docs/ChunkCollectionApi.md#update_chunk_collection) | **PUT** /api/chunk_collection | update_chunk_collection\n*DatasetApi* | [**create_dataset**](docs/DatasetApi.md#create_dataset) | **POST** /api/dataset | create_dataset\n*DatasetApi* | [**delete_dataset**](docs/DatasetApi.md#delete_dataset) | **DELETE** /api/dataset | delete_dataset\n*DatasetApi* | [**get_client_dataset_config**](docs/DatasetApi.md#get_client_dataset_config) | **GET** /api/dataset/envs | get_client_dataset_config\n*DatasetApi* | [**get_dataset**](docs/DatasetApi.md#get_dataset) | **GET** /api/dataset/{dataset_id} | get_dataset\n*DatasetApi* | [**get_datasets_from_organization**](docs/DatasetApi.md#get_datasets_from_organization) | **GET** /api/dataset/organization/{organization_id} | get_organization_datasets\n*DatasetApi* | [**update_dataset**](docs/DatasetApi.md#update_dataset) | **PUT** /api/dataset | update_dataset\n*FileApi* | [**delete_file_handler**](docs/FileApi.md#delete_file_handler) | **DELETE** /api/file/{file_id} | delete_file\n*FileApi* | [**get_file_handler**](docs/FileApi.md#get_file_handler) | **GET** /api/file/{file_id} | get_file\n*FileApi* | [**get_image_file**](docs/FileApi.md#get_image_file) | **GET** /api/image/{file_name} | get_image_file\n*FileApi* | [**upload_file_handler**](docs/FileApi.md#upload_file_handler) | **POST** /api/file | upload_file\n*HealthApi* | [**health_check**](docs/HealthApi.md#health_check) | **GET** /api/health | \n*InvitationApi* | [**post_invitation**](docs/InvitationApi.md#post_invitation) | **POST** /api/invitation | send_invitation\n*MessageApi* | [**create_message_completion_handler**](docs/MessageApi.md#create_message_completion_handler) | **POST** /api/message | create_message\n*MessageApi* | [**edit_message_handler**](docs/MessageApi.md#edit_message_handler) | **PUT** /api/message | edit_message\n*MessageApi* | [**get_all_topic_messages**](docs/MessageApi.md#get_all_topic_messages) | **GET** /api/messages/{messages_topic_id} | get_all_messages\n*MessageApi* | [**regenerate_message_handler**](docs/MessageApi.md#regenerate_message_handler) | **DELETE** /api/message | regenerate_message\n*NotificationsApi* | [**get_notifications**](docs/NotificationsApi.md#get_notifications) | **GET** /api/notifications/{page} | get_notifications\n*NotificationsApi* | [**mark_all_notifications_as_read**](docs/NotificationsApi.md#mark_all_notifications_as_read) | **PUT** /api/notifications_readall | mark_all_read\n*NotificationsApi* | [**mark_notification_as_read**](docs/NotificationsApi.md#mark_notification_as_read) | **PUT** /api/notifications | mark_read\n*OrganizationApi* | [**create_organization**](docs/OrganizationApi.md#create_organization) | **POST** /api/organization | create_organization\n*OrganizationApi* | [**get_organization_by_id**](docs/OrganizationApi.md#get_organization_by_id) | **GET** /api/organization/{organization_id} | get_organization\n*OrganizationApi* | [**get_organization_usage**](docs/OrganizationApi.md#get_organization_usage) | **GET** /api/organization/usage/{organization_id} | get_organization_usage\n*OrganizationApi* | [**get_organization_users**](docs/OrganizationApi.md#get_organization_users) | **GET** /api/organization/users/{organization_id} | get_organization_users\n*OrganizationApi* | [**update_organization**](docs/OrganizationApi.md#update_organization) | **PUT** /api/organization | update_organization\n*StripeApi* | [**cancel_subscription**](docs/StripeApi.md#cancel_subscription) | **DELETE** /api/stripe/subscription/{subscription_id} | \n*StripeApi* | [**direct_to_payment_link**](docs/StripeApi.md#direct_to_payment_link) | **GET** /api/stripe/payment_link/{plan_id}/{organization_id} | \n*StripeApi* | [**get_all_plans**](docs/StripeApi.md#get_all_plans) | **GET** /api/stripe/plans | \n*StripeApi* | [**update_subscription_plan**](docs/StripeApi.md#update_subscription_plan) | **PATCH** /api/stripe/subscription_plan/{subscription_id}/{plan_id} | \n*TopicApi* | [**create_topic**](docs/TopicApi.md#create_topic) | **POST** /api/topic | create_topic\n*TopicApi* | [**delete_topic**](docs/TopicApi.md#delete_topic) | **DELETE** /api/topic | delete_topic\n*TopicApi* | [**get_all_topics**](docs/TopicApi.md#get_all_topics) | **GET** /api/topic | get_all_topics\n*TopicApi* | [**update_topic**](docs/TopicApi.md#update_topic) | **PUT** /api/topic | update_topic\n*UserApi* | [**delete_user_api_key**](docs/UserApi.md#delete_user_api_key) | **DELETE** /api/user/delete_api_key | delete_user_api_key\n*UserApi* | [**get_user_files_handler**](docs/UserApi.md#get_user_files_handler) | **GET** /api/user/files/{user_id} | get_user_files\n*UserApi* | [**get_user_with_chunks_by_id**](docs/UserApi.md#get_user_with_chunks_by_id) | **GET** /api/user/{user_id}/{page} | get_user_chunks\n*UserApi* | [**set_user_api_key**](docs/UserApi.md#set_user_api_key) | **POST** /api/user/set_api_key | set_user_api_key\n*UserApi* | [**update_user**](docs/UserApi.md#update_user) | **PUT** /api/user | update_user\n\n\n## Documentation For Models\n\n - [AddChunkToCollectionData](docs/AddChunkToCollectionData.md)\n - [ApiKeyDTO](docs/ApiKeyDTO.md)\n - [AuthData](docs/AuthData.md)\n - [BookmarkChunks](docs/BookmarkChunks.md)\n - [BookmarkCollectionResult](docs/BookmarkCollectionResult.md)\n - [BookmarkData](docs/BookmarkData.md)\n - [ChatMessageProxy](docs/ChatMessageProxy.md)\n - [ChunkCollection](docs/ChunkCollection.md)\n - [ChunkCollectionAndFile](docs/ChunkCollectionAndFile.md)\n - [ChunkMetadata](docs/ChunkMetadata.md)\n - [ChunkMetadataWithFileData](docs/ChunkMetadataWithFileData.md)\n - [ClientDatasetConfiguration](docs/ClientDatasetConfiguration.md)\n - [CollectionData](docs/CollectionData.md)\n - [CreateChunkCollectionData](docs/CreateChunkCollectionData.md)\n - [CreateChunkData](docs/CreateChunkData.md)\n - [CreateDatasetRequest](docs/CreateDatasetRequest.md)\n - [CreateMessageData](docs/CreateMessageData.md)\n - [CreateOrganizationData](docs/CreateOrganizationData.md)\n - [CreateTopicData](docs/CreateTopicData.md)\n - [Dataset](docs/Dataset.md)\n - [DatasetAndOrgWithSubAndPlan](docs/DatasetAndOrgWithSubAndPlan.md)\n - [DatasetAndUsage](docs/DatasetAndUsage.md)\n - [DatasetDTO](docs/DatasetDTO.md)\n - [DatasetUsageCount](docs/DatasetUsageCount.md)\n - [DefaultError](docs/DefaultError.md)\n - [DeleteBookmarkPathData](docs/DeleteBookmarkPathData.md)\n - [DeleteCollectionData](docs/DeleteCollectionData.md)\n - [DeleteDatasetRequest](docs/DeleteDatasetRequest.md)\n - [DeleteTopicData](docs/DeleteTopicData.md)\n - [DeleteUserApiKeyRequest](docs/DeleteUserApiKeyRequest.md)\n - [EditMessageData](docs/EditMessageData.md)\n - [File](docs/File.md)\n - [FileDTO](docs/FileDTO.md)\n - [FileUploadCompletedNotificationWithName](docs/FileUploadCompletedNotificationWithName.md)\n - [GenerateChunksRequest](docs/GenerateChunksRequest.md)\n - [GenerateOffCollectionData](docs/GenerateOffCollectionData.md)\n - [GetAllBookmarksData](docs/GetAllBookmarksData.md)\n - [GetCollectionsForChunksData](docs/GetCollectionsForChunksData.md)\n - [GetDirectPaymentLinkData](docs/GetDirectPaymentLinkData.md)\n - [GetUserWithChunksData](docs/GetUserWithChunksData.md)\n - [InvitationData](docs/InvitationData.md)\n - [Message](docs/Message.md)\n - [Notification](docs/Notification.md)\n - [NotificationId](docs/NotificationId.md)\n - [NotificationReturn](docs/NotificationReturn.md)\n - [Organization](docs/Organization.md)\n - [OrganizationUsageCount](docs/OrganizationUsageCount.md)\n - [OrganizationWithSubAndPlan](docs/OrganizationWithSubAndPlan.md)\n - [RecommendChunksRequest](docs/RecommendChunksRequest.md)\n - [RegenerateMessageData](docs/RegenerateMessageData.md)\n - [ReturnCreatedChunk](docs/ReturnCreatedChunk.md)\n - [ScoreChunkDTO](docs/ScoreChunkDTO.md)\n - [SearchChunkData](docs/SearchChunkData.md)\n - [SearchChunkDataTimeRangeInner](docs/SearchChunkDataTimeRangeInner.md)\n - [SearchChunkDataWeightsInner](docs/SearchChunkDataWeightsInner.md)\n - [SearchChunkQueryResponseBody](docs/SearchChunkQueryResponseBody.md)\n - [SearchCollectionsData](docs/SearchCollectionsData.md)\n - [SearchCollectionsResult](docs/SearchCollectionsResult.md)\n - [SetUserApiKeyRequest](docs/SetUserApiKeyRequest.md)\n - [SetUserApiKeyResponse](docs/SetUserApiKeyResponse.md)\n - [SlimCollection](docs/SlimCollection.md)\n - [SlimUser](docs/SlimUser.md)\n - [StripePlan](docs/StripePlan.md)\n - [StripeSubscription](docs/StripeSubscription.md)\n - [SuggestedQueriesRequest](docs/SuggestedQueriesRequest.md)\n - [SuggestedQueriesResponse](docs/SuggestedQueriesResponse.md)\n - [Topic](docs/Topic.md)\n - [UpdateChunkByTrackingIdData](docs/UpdateChunkByTrackingIdData.md)\n - [UpdateChunkCollectionData](docs/UpdateChunkCollectionData.md)\n - [UpdateChunkData](docs/UpdateChunkData.md)\n - [UpdateDatasetRequest](docs/UpdateDatasetRequest.md)\n - [UpdateOrganizationData](docs/UpdateOrganizationData.md)\n - [UpdateSubscriptionData](docs/UpdateSubscriptionData.md)\n - [UpdateTopicData](docs/UpdateTopicData.md)\n - [UpdateUserData](docs/UpdateUserData.md)\n - [UploadFileData](docs/UploadFileData.md)\n - [UploadFileResult](docs/UploadFileResult.md)\n - [UserCollectionQuery](docs/UserCollectionQuery.md)\n - [UserDTO](docs/UserDTO.md)\n - [UserDTOWithChunks](docs/UserDTOWithChunks.md)\n - [UserOrganization](docs/UserOrganization.md)\n - [UserRole](docs/UserRole.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\nEndpoints do not require authorization.\n\n\n## Author\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "trieve-server",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
        "Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
    },
    "split_keywords": [
        "openapi",
        "openapi-generator",
        "trieve-server"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a621f8196005f2f495a71acc85e97f782a1cd8bd319567e04024d0d8fe655dd3",
                "md5": "db7af58789627757dd2ebcfe29f0fea4",
                "sha256": "b7d27ff7d134fbcad84036a4185e920864b5e595741bdf041ee54dfe45f11bd6"
            },
            "downloads": -1,
            "filename": "trieve_python_client-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "db7af58789627757dd2ebcfe29f0fea4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 181771,
            "upload_time": "2024-01-25T18:13:05",
            "upload_time_iso_8601": "2024-01-25T18:13:05.999161Z",
            "url": "https://files.pythonhosted.org/packages/a6/21/f8196005f2f495a71acc85e97f782a1cd8bd319567e04024d0d8fe655dd3/trieve_python_client-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17d43ce5b5614580f0dbe221fa9a7e8b6a02cdb5892c3177039f0b60dd29d2f6",
                "md5": "71f2ab917bdd21bf97394669e70d2dc9",
                "sha256": "78b026586d68e5d7fee470b03bb86bd53a507b494b450b35293365673773a60d"
            },
            "downloads": -1,
            "filename": "trieve_python_client-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "71f2ab917bdd21bf97394669e70d2dc9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 69824,
            "upload_time": "2024-01-25T18:13:10",
            "upload_time_iso_8601": "2024-01-25T18:13:10.298365Z",
            "url": "https://files.pythonhosted.org/packages/17/d4/3ce5b5614580f0dbe221fa9a7e8b6a02cdb5892c3177039f0b60dd29d2f6/trieve_python_client-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-25 18:13:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GIT_USER_ID",
    "github_project": "GIT_REPO_ID",
    "github_not_found": true,
    "lcname": "trieve_python_client"
}
        
Elapsed time: 0.16919s