ThinkHub is a versatile Python framework that provides a unified interface for interacting with multiple AI services, such as chat and transcription. It simplifies the integration process and allows developers to extend its functionality by creating and registering custom plugins. ThinkHub is designed for flexibility and scalability, making it an ideal choice for projects that rely on AI-driven services.
Project description
ThinkHub
ThinkHub is a lightweight Python package designed for small and simple projects or for quickly testing LLM services. It provides a unified interface for interacting with multiple AI providers, making it easy to configure and switch between different services. Built with extensibility in mind, users can effortlessly integrate new providers by creating and registering their own plugins or classes. ThinkHub prioritizes simplicity, flexibility, and user-friendly customization, making it an ideal tool for rapid prototyping and experimentation with AI models.
Key Features
- Lazy Loading: Only loads the dependencies required for the selected service, reducing memory and installation overhead.
- Multi-Service Integration: Interact seamlessly with multiple AI services (e.g., chat, transcription, image processing).
- Plugin System: Register and use custom classes to extend functionality.
- Dynamic Configuration: Load and manage configurations with environment variable overrides.
- Error Handling: Robust exception system for identifying and managing provider-related issues.
- Poetry and pip Support: Flexible dependency and environment management.
- Python 3.11+: Leverages the latest features of Python for performance and simplicity.
Supported Services
Audio Transcriptions
- OpenAI: Using the
whisper-1model. - Google Speech-to-Text
| Provider | Completion | Streaming | Async Completion | Async Streaming | Async Embedding | Async Image Generation | Image Input |
|---|---|---|---|---|---|---|---|
| OpenAI | ❌ | ❌ | ❌ | ✅ | ❌ | ❌ | ✅ |
| Google Gemini | ❌ | ❌ | ❌ | ✅ | ❌ | ❌ | ✅ |
| Anthropic - Claude.ai | ❌ | ❌ | ❌ | ✅ | ❌ | ❌ | ✅ |
Installation
ThinkHub uses a lazy-loading strategy to optimize memory usage and avoid installing unused dependencies. You can install ThinkHub using either Poetry or pip, as shown below:
1. Install the Base Library
- Poetry:
poetry add thinkhub
- pip:
pip install thinkhub
2. Install with Specific Extras
Install only the required dependencies based on the service(s) you plan to use:
-
OpenAI Chat:
- Poetry:
poetry add thinkhub --extras openai
- pip:
pip install thinkhub[openai]
- Poetry:
-
Google Transcription:
- Poetry:
poetry add thinkhub --extras google
- pip:
pip install thinkhub[google]
- Poetry:
-
Anthropic Chat:
- Poetry:
poetry add thinkhub --extras anthropic
- pip:
pip install thinkhub[anthropic]
- Poetry:
-
Gemini Chat:
- Poetry:
poetry add thinkhub --extras google-generativeai
- pip:
pip install thinkhub[google-generativeai]
- Poetry:
-
Multiple Services (e.g., OpenAI and Anthropic):
- Poetry:
poetry add thinkhub --extras openai --extras anthropic
- pip:
pip install thinkhub[openai,anthropic]
- Poetry:
3. Install All Services
If you want to install all available services:
- Poetry:
poetry add thinkhub --extras all
- pip:
pip install thinkhub[all]
4. Activate the Virtual Environment
- Poetry:
poetry shell
Usage
Lazy Loading
ThinkHub uses lazy loading to dynamically import the dependencies required for a specific provider. This means that:
- Dependencies are only loaded when needed.
- Missing dependencies are flagged with clear error messages.
Example:
If you attempt to use OpenAI services without the openai extra installed, ThinkHub will raise an error like this:
ImportError: Missing dependencies for provider 'openai': tiktoken.
Install them using 'poetry install --extras openai' or 'pip install thinkhub[openai]'.
Chat Services
To use a chat service like OpenAI:
from thinkhub.chat import get_chat_service
chat_service = get_chat_service("openai", model="gpt-4o")
async for response in chat_service.stream_chat_response("Hello, ThinkHub!"):
print(response)
Transcription Services
To use a transcription service like Google:
from thinkhub.transcription import get_transcription_service
transcription_service = get_transcription_service("google")
result = await transcription_service.transcribe("path/to/audio.flac")
print(result)
Image Processing with OpenAI
ThinkHub supports image processing with OpenAI. Here’s an example of how to process multiple images asynchronously:
import asyncio
from thinkhub.chat import get_chat_service
async def process_image_with_openai(image_payloads):
chat_service = get_chat_service("openai", model="gpt-4")
async for response in chat_service.stream_chat_response(
input_data=image_payloads,
system_prompt="Analyze these images."
):
print(response)
# Prepare image payloads
image_payloads = [{"image_path": "path/to/image1.jpg"}, {"image_path": "path/to/image2.jpg"}]
# Process images with OpenAI
asyncio.run(process_image_with_openai(image_payloads))
Error Handling
ThinkHub includes robust error handling to simplify debugging and configuration:
-
Dependency Validation: ThinkHub will check for required dependencies dynamically and provide clear installation instructions.
-
Custom Exceptions:
ProviderNotFoundError: Raised when a requested provider is not found.ImportError: Raised when dependencies for a provider are missing.
Example:
from thinkhub.exceptions import ProviderNotFoundError
try:
service = get_chat_service("unsupported_provider")
except ProviderNotFoundError as e:
print(e)
Development
-
Run Tests:
poetry run pytest
-
Code Linting:
poetry run pre-commit run -a
-
Build the Project:
poetry build
License
This project is licensed under the MIT License..
Acknowledgments
Special thanks to the open-source community for providing the tools and libraries that made this project possible.
Project details
Release history Release notifications | RSS feed
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 thinkhub-0.4.2.tar.gz.
File metadata
- Download URL: thinkhub-0.4.2.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
901bde2c7a3445f0c183a3b93c7aa2ed3c2af67c3ca56c253184269ddd341d39
|
|
| MD5 |
3f4fec1020922e986f7fa10915b8be05
|
|
| BLAKE2b-256 |
92966349e97796d43b33fba1b68f3799cf9721e5ef2d5f9f2ddefe9d3c5ccd86
|
File details
Details for the file thinkhub-0.4.2-py3-none-any.whl.
File metadata
- Download URL: thinkhub-0.4.2-py3-none-any.whl
- Upload date:
- Size: 24.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f8187c48e3c186ee81a8aaf743f04e4ac96357c3da2760c85ec3a75e2ecb479
|
|
| MD5 |
3fe04a96837d3a28cbf42f016ad6f029
|
|
| BLAKE2b-256 |
c692dc9810b195dce0f1432c67c691a4b67d7834b321a4f558c1b219b91dd398
|