Simple wrappers for various AI APIs including LLMs, ASR, and TTS
Project description
Wrapperz (WIP - agent generated)
Simple wrappers for various AI APIs including LLMs, ASR, and TTS.
Installation
pip install wrapperz
uv add wrapperz
Features
- LLM API Wrappers: Unified interface for OpenAI, Anthropic, Google, and other LLM providers
- ASR (Automatic Speech Recognition): Convert speech to text
- TTS (Text-to-Speech): Convert text to speech
- Async Support: Asynchronous API calls for improved performance
Quick Start
import os
from wrapperz import call_ai, MessageBuilder
os.environ["OPENAI_API_KEY"] = "your_openai_key" # or load from .env using dotenv etc...
messages = MessageBuilder().add_system("You are a helpful assistant.").add_user("What's 1+1?")
# Call an LLM with a simple interface
response, cost = call_ai(
model="openai/gpt-4o",
messages=messages
)
Environment Variables
Set up your API keys in environment variables to enable providers.
OPENAI_API_KEY=your_openai_key
ANTHROPIC_API_KEY=your_anthropic_key
GOOGLE_API_KEY=your_google_key
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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
wrapperz-0.1.3.tar.gz
(174.7 kB
view details)
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
wrapperz-0.1.3-py3-none-any.whl
(23.5 kB
view details)
File details
Details for the file wrapperz-0.1.3.tar.gz.
File metadata
- Download URL: wrapperz-0.1.3.tar.gz
- Upload date:
- Size: 174.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13bbda76bd8a6bff752b73af5c2f1ef9d80f5305bdc96adb10a1c9942191bd7e
|
|
| MD5 |
75cfdeffd74755738ea32fe799b89994
|
|
| BLAKE2b-256 |
6513a29ff6f11d245b3df99771f5ffe4c128933bf43bf247926ac66a46f78417
|
File details
Details for the file wrapperz-0.1.3-py3-none-any.whl.
File metadata
- Download URL: wrapperz-0.1.3-py3-none-any.whl
- Upload date:
- Size: 23.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9f0634fb68436a8b6a985151aa654fcd1d233f29891500e584f18578f0c98ee
|
|
| MD5 |
eb3eaca02d08ccbcdb5344ce68163528
|
|
| BLAKE2b-256 |
d561632550f26317a93a68a38cc69da97a08c902982f8a732382877b80cba653
|