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 = call_ai(
model="openai/gpt-4o",
messages=messages
)
print(response)
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.2.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.2-py3-none-any.whl
(23.5 kB
view details)
File details
Details for the file wrapperz-0.1.2.tar.gz.
File metadata
- Download URL: wrapperz-0.1.2.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 |
cec03feff12e56af972607219a6f9ad474fd9cebb3f96ee10a49e036980e8ae5
|
|
| MD5 |
0c4077d0ae922e73cfc1912d4de9d423
|
|
| BLAKE2b-256 |
cde318c7fc147ba5b8b91873dc61a8be5d4392dbda066e89aea24f0d5d210c40
|
File details
Details for the file wrapperz-0.1.2-py3-none-any.whl.
File metadata
- Download URL: wrapperz-0.1.2-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 |
25a13293c98d355525b8f862cc60de42604fb494a39d6e8bcebb0e57a35d3bfe
|
|
| MD5 |
f60f3eb7618f3ccc7950049871d8f5a4
|
|
| BLAKE2b-256 |
cf80260bfaf4795d7c9903d0fc9d531afd8505e766fcdfff4f3412ddbae6d41f
|