Metadata-Version: 2.4
Name: intellex_shared_client
Version: 0.1.1
Summary: Intellex API Python client (generated from OpenAPI)
Home-page: 
Author: OpenAPI Generator community
Author-email: Intellex <team@intellex.ai>
Project-URL: Repository, https://github.com/intellex-ai/intellex-shared
Keywords: OpenAPI,Intellex API,client
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author

# intellex-shared-client
Python client for the Intellex API

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

- API version: 0.2.0
- Package version: 0.1.1
- Generator version: 7.17.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.9+

## 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 intellex_shared_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 intellex_shared_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import intellex_shared_client
from intellex_shared_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 = intellex_shared_client.Configuration(
    host = "http://localhost"
)



# Enter a context with an instance of the API client
with intellex_shared_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = intellex_shared_client.AuthApi(api_client)
    email = 'email_example' # str | Email to fetch a specific user (optional)
    user_id = 'user_id_example' # str | Supabase auth/user id to fetch a specific user (optional)
    skip_revoked_check = False # bool |  (optional) (default to False)
    authorization = 'authorization_example' # str |  (optional)
    x_device_id = 'x_device_id_example' # str |  (optional)

    try:
        # Current User
        api_response = api_instance.current_user_auth_me_get(email=email, user_id=user_id, skip_revoked_check=skip_revoked_check, authorization=authorization, x_device_id=x_device_id)
        print("The response of AuthApi->current_user_auth_me_get:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AuthApi->current_user_auth_me_get: %s\n" % e)

```

## Documentation for API Endpoints

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

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AuthApi* | [**current_user_auth_me_get**](docs/AuthApi.md#current_user_auth_me_get) | **GET** /auth/me | Current User
*AuthApi* | [**delete_account_auth_account_delete**](docs/AuthApi.md#delete_account_auth_account_delete) | **DELETE** /auth/account | Delete Account
*AuthApi* | [**delete_device_auth_devices_device_id_delete**](docs/AuthApi.md#delete_device_auth_devices_device_id_delete) | **DELETE** /auth/devices/{deviceId} | Delete Device
*AuthApi* | [**list_devices_auth_devices_get**](docs/AuthApi.md#list_devices_auth_devices_get) | **GET** /auth/devices | List Devices
*AuthApi* | [**login_auth_login_post**](docs/AuthApi.md#login_auth_login_post) | **POST** /auth/login | Login
*AuthApi* | [**revoke_devices_auth_devices_revoke_post**](docs/AuthApi.md#revoke_devices_auth_devices_revoke_post) | **POST** /auth/devices/revoke | Revoke Devices
*AuthApi* | [**upsert_device_auth_devices_post**](docs/AuthApi.md#upsert_device_auth_devices_post) | **POST** /auth/devices | Upsert Device
*DefaultApi* | [**db_health_health_db_get**](docs/DefaultApi.md#db_health_health_db_get) | **GET** /health/db | Db Health
*DefaultApi* | [**health_check_health_get**](docs/DefaultApi.md#health_check_health_get) | **GET** /health | Health Check
*DefaultApi* | [**root_get**](docs/DefaultApi.md#root_get) | **GET** / | Root
*DefaultApi* | [**supabase_health_health_supabase_get**](docs/DefaultApi.md#supabase_health_health_supabase_get) | **GET** /health/supabase | Supabase Health
*ProjectsApi* | [**create_project_projects_post**](docs/ProjectsApi.md#create_project_projects_post) | **POST** /projects | Create Project
*ProjectsApi* | [**delete_project_projects_project_id_delete**](docs/ProjectsApi.md#delete_project_projects_project_id_delete) | **DELETE** /projects/{project_id} | Delete Project
*ProjectsApi* | [**get_messages_projects_project_id_messages_get**](docs/ProjectsApi.md#get_messages_projects_project_id_messages_get) | **GET** /projects/{project_id}/messages | Get Messages
*ProjectsApi* | [**get_plan_projects_project_id_plan_get**](docs/ProjectsApi.md#get_plan_projects_project_id_plan_get) | **GET** /projects/{project_id}/plan | Get Plan
*ProjectsApi* | [**get_project_projects_project_id_get**](docs/ProjectsApi.md#get_project_projects_project_id_get) | **GET** /projects/{project_id} | Get Project
*ProjectsApi* | [**list_project_shares_projects_project_id_shares_get**](docs/ProjectsApi.md#list_project_shares_projects_project_id_shares_get) | **GET** /projects/{project_id}/shares | List Project Shares
*ProjectsApi* | [**list_projects_projects_get**](docs/ProjectsApi.md#list_projects_projects_get) | **GET** /projects | List Projects
*ProjectsApi* | [**project_stats_projects_stats_get**](docs/ProjectsApi.md#project_stats_projects_stats_get) | **GET** /projects/stats | Project Stats
*ProjectsApi* | [**recent_activity_projects_activity_get**](docs/ProjectsApi.md#recent_activity_projects_activity_get) | **GET** /projects/activity | Recent Activity
*ProjectsApi* | [**revoke_project_share_projects_project_id_shares_share_id_delete**](docs/ProjectsApi.md#revoke_project_share_projects_project_id_shares_share_id_delete) | **DELETE** /projects/{project_id}/shares/{share_id} | Revoke Project Share
*ProjectsApi* | [**send_message_projects_project_id_messages_post**](docs/ProjectsApi.md#send_message_projects_project_id_messages_post) | **POST** /projects/{project_id}/messages | Send Message
*ProjectsApi* | [**share_project_projects_project_id_shares_post**](docs/ProjectsApi.md#share_project_projects_project_id_shares_post) | **POST** /projects/{project_id}/shares | Share Project
*ProjectsApi* | [**update_project_projects_project_id_patch**](docs/ProjectsApi.md#update_project_projects_project_id_patch) | **PATCH** /projects/{project_id} | Update Project
*UsersApi* | [**get_api_keys_users_api_keys_get**](docs/UsersApi.md#get_api_keys_users_api_keys_get) | **GET** /users/api-keys | Get Api Keys
*UsersApi* | [**save_api_keys_users_api_keys_post**](docs/UsersApi.md#save_api_keys_users_api_keys_post) | **POST** /users/api-keys | Save Api Keys


## Documentation For Models

 - [ActivityItem](docs/ActivityItem.md)
 - [AgentThought](docs/AgentThought.md)
 - [ApiKeyPayload](docs/ApiKeyPayload.md)
 - [ApiKeySummary](docs/ApiKeySummary.md)
 - [ApiKeysResponse](docs/ApiKeysResponse.md)
 - [ChatMessage](docs/ChatMessage.md)
 - [CreateMessageRequest](docs/CreateMessageRequest.md)
 - [CreateProjectRequest](docs/CreateProjectRequest.md)
 - [DeleteAccountRequest](docs/DeleteAccountRequest.md)
 - [DeviceDeleteResponse](docs/DeviceDeleteResponse.md)
 - [DeviceListResponse](docs/DeviceListResponse.md)
 - [DeviceRecord](docs/DeviceRecord.md)
 - [DeviceRevokeRequest](docs/DeviceRevokeRequest.md)
 - [DeviceRevokeResponse](docs/DeviceRevokeResponse.md)
 - [DeviceUpsertRequest](docs/DeviceUpsertRequest.md)
 - [HTTPValidationError](docs/HTTPValidationError.md)
 - [LoginRequest](docs/LoginRequest.md)
 - [Preferences](docs/Preferences.md)
 - [ProjectShare](docs/ProjectShare.md)
 - [ProjectStats](docs/ProjectStats.md)
 - [ResearchPlan](docs/ResearchPlan.md)
 - [ResearchPlanItem](docs/ResearchPlanItem.md)
 - [ResearchProject](docs/ResearchProject.md)
 - [SendMessageResponse](docs/SendMessageResponse.md)
 - [ShareProjectRequest](docs/ShareProjectRequest.md)
 - [UpdateProjectRequest](docs/UpdateProjectRequest.md)
 - [User](docs/User.md)
 - [ValidationError](docs/ValidationError.md)
 - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)


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

Endpoints do not require authorization.


## Author


