# openapi-client
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: v0
- Package version: 1.0.0
- Generator version: 7.16.0-SNAPSHOT
- 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 llm_tools_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 llm_tools_client
```
### Tests
Execute `pytest` to run the tests.
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
import llm_tools_client
from llm_tools_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://host.docker.internal:8080/llm-tools/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = llm_tools_client.Configuration(
host = "http://host.docker.internal:8080/llm-tools/v1"
)
# Enter a context with an instance of the API client
with llm_tools_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = llm_tools_client.CategoryControllerApi(api_client)
category_id = 'category_id_example' # str |
try:
# Category 상세 조회
api_response = api_instance.get_category_detail(category_id)
print("The response of CategoryControllerApi->get_category_detail:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling CategoryControllerApi->get_category_detail: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *http://host.docker.internal:8080/llm-tools/v1*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*CategoryControllerApi* | [**get_category_detail**](docs/CategoryControllerApi.md#get_category_detail) | **GET** /category/detail | Category 상세 조회
*CategoryControllerApi* | [**get_category_list**](docs/CategoryControllerApi.md#get_category_list) | **GET** /category/search | Category 검색
*FewshotControllerApi* | [**check_duplicate_name1**](docs/FewshotControllerApi.md#check_duplicate_name1) | **GET** /fewshot/check/name | Fewshot 명 중복 확인
*FewshotControllerApi* | [**check_duplicate_version1**](docs/FewshotControllerApi.md#check_duplicate_version1) | **GET** /fewshot/check/version | Fewshot 버전 중복 확인
*FewshotControllerApi* | [**delete_fewshot**](docs/FewshotControllerApi.md#delete_fewshot) | **POST** /fewshot/delete | Fewshot 삭제
*FewshotControllerApi* | [**get_fewshot_detail**](docs/FewshotControllerApi.md#get_fewshot_detail) | **GET** /fewshot/detail | Fewshot 상세 조회
*FewshotControllerApi* | [**get_fewshot_list**](docs/FewshotControllerApi.md#get_fewshot_list) | **GET** /fewshot/search | Fewshot 검색
*FewshotControllerApi* | [**get_fewshot_version_list**](docs/FewshotControllerApi.md#get_fewshot_version_list) | **GET** /fewshot/version | Fewshot 버전 목록
*FewshotControllerApi* | [**release_fewshot**](docs/FewshotControllerApi.md#release_fewshot) | **POST** /fewshot/release | 특정 Fewshot 버전 release 상태 변경
*FewshotControllerApi* | [**save_fewshot**](docs/FewshotControllerApi.md#save_fewshot) | **POST** /fewshot/save | Fewshot 생성
*FewshotControllerApi* | [**update_fewshot**](docs/FewshotControllerApi.md#update_fewshot) | **POST** /fewshot/update | Fewshot 수정
*ModelControllerApi* | [**delete_model**](docs/ModelControllerApi.md#delete_model) | **POST** /model/delete | Model 삭제
*ModelControllerApi* | [**get_model_detail**](docs/ModelControllerApi.md#get_model_detail) | **GET** /model/detail | Model 상세 조회
*ModelControllerApi* | [**get_model_list**](docs/ModelControllerApi.md#get_model_list) | **GET** /model/search | Model 검색
*ModelControllerApi* | [**get_model_type**](docs/ModelControllerApi.md#get_model_type) | **GET** /model/type | Model 타입 목록
*ModelControllerApi* | [**get_provider**](docs/ModelControllerApi.md#get_provider) | **GET** /model/provider | Provider 목록
*ModelControllerApi* | [**save_model**](docs/ModelControllerApi.md#save_model) | **POST** /model/save | Model 생성
*ModelControllerApi* | [**update_model**](docs/ModelControllerApi.md#update_model) | **POST** /model/update | Model 수정
*PromptControllerApi* | [**check_duplicate_name**](docs/PromptControllerApi.md#check_duplicate_name) | **GET** /prompt/check/name | Prompt 명 중복 확인
*PromptControllerApi* | [**check_duplicate_version**](docs/PromptControllerApi.md#check_duplicate_version) | **GET** /prompt/check/version | Prompt 버전 중복 확인
*PromptControllerApi* | [**delete_prompt**](docs/PromptControllerApi.md#delete_prompt) | **POST** /prompt/delete | Prompt 삭제
*PromptControllerApi* | [**get_prompt_detail**](docs/PromptControllerApi.md#get_prompt_detail) | **GET** /prompt/detail | Prompt 상세 조회
*PromptControllerApi* | [**get_prompt_list**](docs/PromptControllerApi.md#get_prompt_list) | **GET** /prompt/search | Prompt 검색
*PromptControllerApi* | [**get_prompt_version_list**](docs/PromptControllerApi.md#get_prompt_version_list) | **GET** /prompt/version | Prompt 버전 목록
*PromptControllerApi* | [**release_prompt**](docs/PromptControllerApi.md#release_prompt) | **POST** /prompt/release | 특정 Prompt 버전 release 상태 변경
*PromptControllerApi* | [**save_prompt**](docs/PromptControllerApi.md#save_prompt) | **POST** /prompt/save | Prompt 생성
*PromptControllerApi* | [**update_prompt**](docs/PromptControllerApi.md#update_prompt) | **POST** /prompt/update | Prompt 수정
## Documentation For Models
- [FewshotPairRequestDto](docs/FewshotPairRequestDto.md)
- [FewshotRequestDto](docs/FewshotRequestDto.md)
- [ModelRequestDto](docs/ModelRequestDto.md)
- [PromptContentRequestDto](docs/PromptContentRequestDto.md)
- [PromptRequestDto](docs/PromptRequestDto.md)
- [PromptVariableRequestDto](docs/PromptVariableRequestDto.md)
<a id="documentation-for-authorization"></a>
## Documentation For Authorization
Endpoints do not require authorization.
## Author
Raw data
{
"_id": null,
"home_page": null,
"name": "llm-tools-client",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, OpenAPI definition",
"author": "OpenAPI Generator community",
"author_email": "Koran1 <thekorani@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/f1/26/d9fae9df5a92b9d720a2c3caea84b2eabc7a42e74a239b27533f093cba83/llm_tools_client-1.0.3.tar.gz",
"platform": null,
"description": "# openapi-client\r\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\r\n\r\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\r\n\r\n- API version: v0\r\n- Package version: 1.0.0\r\n- Generator version: 7.16.0-SNAPSHOT\r\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\r\n\r\n## Requirements.\r\n\r\nPython 3.9+\r\n\r\n## Installation & Usage\r\n### pip install\r\n\r\nIf the python package is hosted on a repository, you can install directly using:\r\n\r\n```sh\r\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\r\n```\r\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\r\n\r\nThen import the package:\r\n```python\r\nimport llm_tools_client\r\n```\r\n\r\n### Setuptools\r\n\r\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\r\n\r\n```sh\r\npython setup.py install --user\r\n```\r\n(or `sudo python setup.py install` to install the package for all users)\r\n\r\nThen import the package:\r\n```python\r\nimport llm_tools_client\r\n```\r\n\r\n### Tests\r\n\r\nExecute `pytest` to run the tests.\r\n\r\n## Getting Started\r\n\r\nPlease follow the [installation procedure](#installation--usage) and then run the following:\r\n\r\n```python\r\n\r\nimport llm_tools_client\r\nfrom llm_tools_client.rest import ApiException\r\nfrom pprint import pprint\r\n\r\n# Defining the host is optional and defaults to http://host.docker.internal:8080/llm-tools/v1\r\n# See configuration.py for a list of all supported configuration parameters.\r\nconfiguration = llm_tools_client.Configuration(\r\n host = \"http://host.docker.internal:8080/llm-tools/v1\"\r\n)\r\n\r\n\r\n\r\n# Enter a context with an instance of the API client\r\nwith llm_tools_client.ApiClient(configuration) as api_client:\r\n # Create an instance of the API class\r\n api_instance = llm_tools_client.CategoryControllerApi(api_client)\r\n category_id = 'category_id_example' # str | \r\n\r\n try:\r\n # Category \uc0c1\uc138 \uc870\ud68c\r\n api_response = api_instance.get_category_detail(category_id)\r\n print(\"The response of CategoryControllerApi->get_category_detail:\\n\")\r\n pprint(api_response)\r\n except ApiException as e:\r\n print(\"Exception when calling CategoryControllerApi->get_category_detail: %s\\n\" % e)\r\n\r\n```\r\n\r\n## Documentation for API Endpoints\r\n\r\nAll URIs are relative to *http://host.docker.internal:8080/llm-tools/v1*\r\n\r\nClass | Method | HTTP request | Description\r\n------------ | ------------- | ------------- | -------------\r\n*CategoryControllerApi* | [**get_category_detail**](docs/CategoryControllerApi.md#get_category_detail) | **GET** /category/detail | Category \uc0c1\uc138 \uc870\ud68c\r\n*CategoryControllerApi* | [**get_category_list**](docs/CategoryControllerApi.md#get_category_list) | **GET** /category/search | Category \uac80\uc0c9\r\n*FewshotControllerApi* | [**check_duplicate_name1**](docs/FewshotControllerApi.md#check_duplicate_name1) | **GET** /fewshot/check/name | Fewshot \uba85 \uc911\ubcf5 \ud655\uc778\r\n*FewshotControllerApi* | [**check_duplicate_version1**](docs/FewshotControllerApi.md#check_duplicate_version1) | **GET** /fewshot/check/version | Fewshot \ubc84\uc804 \uc911\ubcf5 \ud655\uc778\r\n*FewshotControllerApi* | [**delete_fewshot**](docs/FewshotControllerApi.md#delete_fewshot) | **POST** /fewshot/delete | Fewshot \uc0ad\uc81c\r\n*FewshotControllerApi* | [**get_fewshot_detail**](docs/FewshotControllerApi.md#get_fewshot_detail) | **GET** /fewshot/detail | Fewshot \uc0c1\uc138 \uc870\ud68c\r\n*FewshotControllerApi* | [**get_fewshot_list**](docs/FewshotControllerApi.md#get_fewshot_list) | **GET** /fewshot/search | Fewshot \uac80\uc0c9\r\n*FewshotControllerApi* | [**get_fewshot_version_list**](docs/FewshotControllerApi.md#get_fewshot_version_list) | **GET** /fewshot/version | Fewshot \ubc84\uc804 \ubaa9\ub85d\r\n*FewshotControllerApi* | [**release_fewshot**](docs/FewshotControllerApi.md#release_fewshot) | **POST** /fewshot/release | \ud2b9\uc815 Fewshot \ubc84\uc804 release \uc0c1\ud0dc \ubcc0\uacbd\r\n*FewshotControllerApi* | [**save_fewshot**](docs/FewshotControllerApi.md#save_fewshot) | **POST** /fewshot/save | Fewshot \uc0dd\uc131\r\n*FewshotControllerApi* | [**update_fewshot**](docs/FewshotControllerApi.md#update_fewshot) | **POST** /fewshot/update | Fewshot \uc218\uc815\r\n*ModelControllerApi* | [**delete_model**](docs/ModelControllerApi.md#delete_model) | **POST** /model/delete | Model \uc0ad\uc81c\r\n*ModelControllerApi* | [**get_model_detail**](docs/ModelControllerApi.md#get_model_detail) | **GET** /model/detail | Model \uc0c1\uc138 \uc870\ud68c\r\n*ModelControllerApi* | [**get_model_list**](docs/ModelControllerApi.md#get_model_list) | **GET** /model/search | Model \uac80\uc0c9\r\n*ModelControllerApi* | [**get_model_type**](docs/ModelControllerApi.md#get_model_type) | **GET** /model/type | Model \ud0c0\uc785 \ubaa9\ub85d\r\n*ModelControllerApi* | [**get_provider**](docs/ModelControllerApi.md#get_provider) | **GET** /model/provider | Provider \ubaa9\ub85d\r\n*ModelControllerApi* | [**save_model**](docs/ModelControllerApi.md#save_model) | **POST** /model/save | Model \uc0dd\uc131\r\n*ModelControllerApi* | [**update_model**](docs/ModelControllerApi.md#update_model) | **POST** /model/update | Model \uc218\uc815\r\n*PromptControllerApi* | [**check_duplicate_name**](docs/PromptControllerApi.md#check_duplicate_name) | **GET** /prompt/check/name | Prompt \uba85 \uc911\ubcf5 \ud655\uc778\r\n*PromptControllerApi* | [**check_duplicate_version**](docs/PromptControllerApi.md#check_duplicate_version) | **GET** /prompt/check/version | Prompt \ubc84\uc804 \uc911\ubcf5 \ud655\uc778\r\n*PromptControllerApi* | [**delete_prompt**](docs/PromptControllerApi.md#delete_prompt) | **POST** /prompt/delete | Prompt \uc0ad\uc81c\r\n*PromptControllerApi* | [**get_prompt_detail**](docs/PromptControllerApi.md#get_prompt_detail) | **GET** /prompt/detail | Prompt \uc0c1\uc138 \uc870\ud68c\r\n*PromptControllerApi* | [**get_prompt_list**](docs/PromptControllerApi.md#get_prompt_list) | **GET** /prompt/search | Prompt \uac80\uc0c9\r\n*PromptControllerApi* | [**get_prompt_version_list**](docs/PromptControllerApi.md#get_prompt_version_list) | **GET** /prompt/version | Prompt \ubc84\uc804 \ubaa9\ub85d\r\n*PromptControllerApi* | [**release_prompt**](docs/PromptControllerApi.md#release_prompt) | **POST** /prompt/release | \ud2b9\uc815 Prompt \ubc84\uc804 release \uc0c1\ud0dc \ubcc0\uacbd\r\n*PromptControllerApi* | [**save_prompt**](docs/PromptControllerApi.md#save_prompt) | **POST** /prompt/save | Prompt \uc0dd\uc131\r\n*PromptControllerApi* | [**update_prompt**](docs/PromptControllerApi.md#update_prompt) | **POST** /prompt/update | Prompt \uc218\uc815\r\n\r\n\r\n## Documentation For Models\r\n\r\n - [FewshotPairRequestDto](docs/FewshotPairRequestDto.md)\r\n - [FewshotRequestDto](docs/FewshotRequestDto.md)\r\n - [ModelRequestDto](docs/ModelRequestDto.md)\r\n - [PromptContentRequestDto](docs/PromptContentRequestDto.md)\r\n - [PromptRequestDto](docs/PromptRequestDto.md)\r\n - [PromptVariableRequestDto](docs/PromptVariableRequestDto.md)\r\n\r\n\r\n<a id=\"documentation-for-authorization\"></a>\r\n## Documentation For Authorization\r\n\r\nEndpoints do not require authorization.\r\n\r\n\r\n## Author\r\n\r\n\r\n\r\n\r\n",
"bugtrack_url": null,
"license": null,
"summary": "Python SDK for LLM Tools API",
"version": "1.0.3",
"project_urls": {
"Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
},
"split_keywords": [
"openapi",
" openapi-generator",
" openapi definition"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "665959ecbeda383360e4e74365d0181c9d15953d3506a55f7c2ebaeb1492d9b4",
"md5": "2c9f3d2f7a2c74b4af59efb7c15400f5",
"sha256": "6482abf19775c94d2ea6eae9bb8ebd2d60107ad5a063d249dc5db5184da6f151"
},
"downloads": -1,
"filename": "llm_tools_client-1.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c9f3d2f7a2c74b4af59efb7c15400f5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 44998,
"upload_time": "2025-09-10T07:39:29",
"upload_time_iso_8601": "2025-09-10T07:39:29.503733Z",
"url": "https://files.pythonhosted.org/packages/66/59/59ecbeda383360e4e74365d0181c9d15953d3506a55f7c2ebaeb1492d9b4/llm_tools_client-1.0.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f126d9fae9df5a92b9d720a2c3caea84b2eabc7a42e74a239b27533f093cba83",
"md5": "f60ed3668124787987fded53891f6257",
"sha256": "19a249d9e841f504bb0eb171e40f56db8330d4cbc8b49de07718465f6a3f29e9"
},
"downloads": -1,
"filename": "llm_tools_client-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "f60ed3668124787987fded53891f6257",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 34768,
"upload_time": "2025-09-10T07:39:30",
"upload_time_iso_8601": "2025-09-10T07:39:30.476986Z",
"url": "https://files.pythonhosted.org/packages/f1/26/d9fae9df5a92b9d720a2c3caea84b2eabc7a42e74a239b27533f093cba83/llm_tools_client-1.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-09-10 07:39:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "GIT_USER_ID",
"github_project": "GIT_REPO_ID",
"github_not_found": true,
"lcname": "llm-tools-client"
}