OneSDK is a Python library that provides a unified interface for interacting with various Large Language Model (LLM) providers.
Project description
OneSDK: Unified LLM API Interface
OneSDK is a Python library providing a unified interface for various Large Language Model (LLM) providers. It simplifies interactions with different LLM APIs through a consistent set of methods.
Features
- Unified API for multiple LLM providers
- Flexible usage: per-call model specification or default model setting
- Intuitive interface for common LLM operations
- Synchronous and streaming text generation support
- Token counting functionality
- Embedding creation (for supported providers)
- Image generation (for supported providers)
- File operations (for supported providers)
- Proxy setting for API calls
- Usage statistics retrieval (for supported providers)
Installation
pip install llm_onesdk
Quick Start
OneSDK supports two main usage patterns:
1. Specify model for each call
from llm_onesdk import OneSDK
sdk = OneSDK("openai", {"api_key": "your-api-key"})
response = sdk.generate(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": "Tell me a joke about programming."}]
)
print(response['choices'][0]['message']['content'])
2. Set a default model
from llm_onesdk import OneSDK
sdk = OneSDK("openai", {"api_key": "your-api-key"})
sdk.set_model("gpt-3.5-turbo")
response = sdk.generate(
messages=[{"role": "user", "content": "Tell me a joke about programming."}]
)
print(response['choices'][0]['message']['content'])
Streaming Generation
for chunk in sdk.stream_generate(
model="gpt-3.5-turbo", # Optional if using set_model()
messages=[{"role": "user", "content": "Write a short story about AI."}]
):
print(chunk['choices'][0]['message']['content'], end='', flush=True)
Additional Operations
# List models (for supported providers)
models = sdk.list_models()
print(models)
# Count tokens
token_count = sdk.count_tokens(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": "How many tokens is this?"}]
)
print(f"Token count: {token_count}")
# Create embeddings (for supported providers)
embeddings = sdk.create_embedding(
model="text-embedding-ada-002",
input="Hello, world!"
)
print(embeddings)
# Generate image (for supported providers)
image_response = sdk.create_image("A futuristic city with flying cars")
print(image_response)
Supported Providers and Core Methods
The following table shows the supported providers, their core method support, and additional features:
| Provider | list_models | generate | stream_generate | count_tokens | create_embedding | create_image | Additional Features |
|---|---|---|---|---|---|---|---|
| Anthropic | ✓ | ✓ | ✓ | ✓ | ✗ | ✗ | Context creation and management |
| Qwen (通义千问) | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ | Multimodal generation |
| Cohere* | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ | Text classification, Summarization |
| Doubao | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ | Knowledge base management, Speech synthesis |
| Gemini* | ✗ | ✓ | ✓ | ✓ | ✓ | ✗ | Multimodal understanding |
| Kimi | ✓ | ✓ | ✓ | ✓ | ✗ | ✗ | File operations, Context caching |
| MiniMax | ✗ | ✓ | ✓ | ✓ | ✓ | ✓ | Audio processing, Knowledge base management |
| Ollama* | ✓ | ✓ | ✓ | ✓ | ✓ | ✗ | Local model management |
| OpenAI | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | Audio transcription, Model fine-tuning |
| Wenxin (文心一言) | ✗ | ✓ | ✓ | ✓ | ✗ | ✗ | Custom model settings |
✓: Supported, ✗: Not supported
Notes:
- Some providers may have additional provider-specific methods. Refer to individual provider documentation for details.
- Providers marked with * (Ollama, Gemini, and Cohere) are currently not fully tested. The documentation for these providers is for reference only and may not be entirely accurate or up-to-date. We are working on improving these integrations and will provide more accurate information in future updates.
- The "Additional Features" column summarizes some unique or extra functionalities of each provider. The availability and usage of specific features may change over time; please refer to the latest official documentation.
Key Methods
set_model(model): Set default modellist_models(): List available models (if supported)generate(messages, model=None, **kwargs): Generate responsestream_generate(messages, model=None, **kwargs): Stream responsecount_tokens(model, messages): Count tokenscreate_embedding(model, input, **kwargs): Create embeddings (if supported)create_image(prompt, **kwargs): Create image (if supported)upload_file(file_path): Upload file (if supported)set_proxy(proxy_url): Set proxy for API calls
Error Handling
OneSDK uses custom exceptions inheriting from InvokeError. Always wrap API calls in try-except blocks:
from llm_onesdk.utils.error_handler import InvokeError
try:
response = sdk.generate(model, messages)
except InvokeError as e:
print(f"An error occurred: {str(e)}")
Documentation
For detailed information on each provider's capabilities and usage, please refer to the individual documentation files in the docs/ directory.
Contributing
We welcome contributions, especially new provider integrations! See our Contributing Guide for details.
License
This project is under the MIT License. See the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llm_onesdk-0.0.4.tar.gz.
File metadata
- Download URL: llm_onesdk-0.0.4.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f553cda4eeaecbf93b964762fd14da18b6c625947d915779a21f7773bd3f5a44
|
|
| MD5 |
a22fcfc4e7400262656a8cc130f08290
|
|
| BLAKE2b-256 |
8a5581a7438716e5a21583b70995369944e7fbcfd363a6bf5d32790f05ef94f1
|
File details
Details for the file llm_onesdk-0.0.4-py3-none-any.whl.
File metadata
- Download URL: llm_onesdk-0.0.4-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67b9894c6ec064dde8fd05605511199aec0412d411e7542213ebde3bab611dcb
|
|
| MD5 |
89021fc306cb911fbdc276cad1a34805
|
|
| BLAKE2b-256 |
4d201523a0fd43001eb23048dc004262d709f8ba0fef3b3a5513162bd501a180
|