Unified Python package for AI models
Project description
unifiedaiservices
unifiedaiservices is a Python package that brings together a wide range of AI tools and services in a single, easy-to-use interface. It allows developers to integrate language models, transcription, image generation, voice synthesis, and more into their applications quickly and modularly.
Key Features
- Integration with OpenAI models (including GPT, TTS, Transcribe, etc.)
- Audio and video transcription
- Image generation using advanced AI models
- Predefined voices and text-to-speech (TTS) support
- Modular architecture for easy extension and customization
Requirements
- Python 3.11 or higher
Installation
Install directly from PyPI:
pip install unifiedaiservices
Basic Usage
from unifiedaiservices.client import CreateClient
from unifiedaiservices.settings import AISettings, OpenAIProvider
import os
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
API_KEY = os.getenv("OpenAI_API_KEY")
# Initialize client
client = CreateClient(api_key=API_KEY, provider="openai").get_client()
# Create OpenAIProvider instance
openai = OpenAIProvider(client)
# Load settings and print available models
AISettings(openai).print_models()
# Available actions
openai.print_models()
openai.create_data("model", "prompts")
openai.exists_model("model_id")
openai.get_models()
openai.get_model_info("model_id")
Note: You can also manually set the data:
openai.data_prompt = {
"model": "gpt-4o",
"prompt": "Hello, world!",
"max_tokens": 50
}
Example Usage
openai.generate_ai(openai.create_data(data))
Contributing
Contributions are welcome! If you have suggestions, bug fixes, or new feature ideas, please reach out via email: a0534123987@gmail.com
License
MIT License © 2025 This license allows free use, copying, modification, and distribution of the code.
Notes
- This project is aimed at developers and AI enthusiasts who want to easily integrate multiple AI tools.
- It is recommended to use personal API keys for OpenAI or any other external services.
- For advanced usage,
unifiedaiservicescan be extended to suit your specific needs.
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 unifiedaiservices-0.1.4.tar.gz.
File metadata
- Download URL: unifiedaiservices-0.1.4.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32f46f13d674768146c87ed8d55551a87761cc735669f0afd668675ff7269229
|
|
| MD5 |
27f98eb996b30193d1764f6cc06ab3e2
|
|
| BLAKE2b-256 |
42decc74dade4385fde9a00ac5c0ed1174988327b760954b140db5009ccd7ee5
|
File details
Details for the file unifiedaiservices-0.1.4-py3-none-any.whl.
File metadata
- Download URL: unifiedaiservices-0.1.4-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02f30e48610495a902d343a832999d7d08972dc343dff69d66f3c1b6e125a06b
|
|
| MD5 |
328931a0ae368369454b5bcf5597d199
|
|
| BLAKE2b-256 |
2552c93de2a9f76574d095d12dad6890707e674432fc23efb2731d22f6f0c1aa
|