The easiest AI wrapper for OpenAI, Anthropic, Gemini, and HuggingFace
Project description
Documentation: ethan-super-ai-wrapper (v0.1.10+)
Welcome! ethan-super-ai-wrapper is a simple, unified Python library designed to make integrating different AI models into your projects as easy as possible.
Instead of learning separate libraries for OpenAI, Google, Anthropic, and HuggingFace, you only need to learn one set of simple commands. The library automatically handles the different API formats in the background.
- Installation
Install the library directly from PyPI using pip. This will also install its required dependencies (requests and huggingface_hub).
code Bash download content_copy expand_less pip install ethan-super-ai-wrapper 2. Quick Start (30 Seconds)
This is the fastest way to get a response.
code Python download content_copy expand_less
1. Import the global 'ai' object
from ez_ai import ai
2. Set your API key
ai.openai_key = "YOUR_OPENAI_API_KEY_HERE"
3. Ask a question!
response = ai.ask("Write a short poem about Python code.") print(response) 3. Core Commands: The API Reference
All commands are accessed through the imported ai object.
Authentication (Setting API Keys)
Setting a key automatically activates that provider and sets a recommended default model. You only need to set the key for the provider you want to use.
Command Description Default Model Set ai.openai_key = "sk-..." Activates OpenAI (GPT models). gpt-4o ai.gemini_key = "AIza..." Activates Google Gemini. gemini-1.5-flash ai.anthropic_key = "sk-..." Activates Anthropic (Claude models). claude-3-5-sonnet ai.hf_key = "hf_..." Activates HuggingFace (Open Source). mistralai/Mistral-7B... Generating Text
This is the primary function for all text-based tasks.
ai.ask(prompt)
Description: Sends a prompt to the currently active AI provider and returns the text response.
Parameters:
prompt (string): Your question or instruction for the AI.
Returns: A string containing the AI's answer.
Model Selection
You can manually override the default model at any time.
ai.model = "model-name"
Description: Sets the specific model to be used for the next ai.ask() call. The library will automatically switch to the correct provider's logic based on the name.
Examples:
code Python download content_copy expand_less
Use a cheaper OpenAI model
ai.model = "gpt-3.5-turbo"
Use Google's most powerful model
ai.model = "gemini-1.5-pro"
Use a specific open-source model
ai.model = "google/flan-t5-large" Advanced Chat Features
These commands give you more control over the conversation.
ai.set_personality(text)
Description: Sets a "system prompt" to define the AI's character or give it specific instructions for the entire conversation.
Example:
code Python download content_copy expand_less ai.set_personality("You are a sarcastic robot from the future.") print(ai.ask("What do you think of humans?"))
ai.clear_memory()
Description: The library remembers the last few turns of conversation. Use this command to clear the history and start a fresh conversation.
Image Generation
ai.generate_image(prompt)
Description: Creates an image based on a text prompt.
Note: This feature currently requires an OpenAI key (ai.openai_key) and uses the DALL-E 3 model.
Returns: A string containing the URL of the generated image.
- Usage Examples by Provider
See how easy it is to switch between different AI companies.
Example: OpenAI (GPT) code Python download content_copy expand_less from ez_ai import ai ai.openai_key = "YOUR_KEY" print(ai.ask("Why is the sky blue?")) Example: Google (Gemini) code Python download content_copy expand_less from ez_ai import ai ai.gemini_key = "YOUR_KEY"
Let's use the stable model
ai.model = "gemini-1.5-flash" print(ai.ask("Why is the sky blue?")) Example: Anthropic (Claude) code Python download content_copy expand_less from ez_ai import ai ai.anthropic_key = "YOUR_KEY" print(ai.ask("Why is the sky blue?")) Example: HuggingFace (Open Source) code Python download content_copy expand_less from ez_ai import ai ai.hf_key = "YOUR_KEY"
Use a reliable, small model for testing
ai.model = "gpt2" print(ai.ask("Why is the sky blue?"))
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 Distributions
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 ethan_super_ai_wrapper-0.1.13-py3-none-any.whl.
File metadata
- Download URL: ethan_super_ai_wrapper-0.1.13-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21fd1296951f9126126568a8262109e5386937aca842674da6a2aca560f91541
|
|
| MD5 |
79462515aa57d7a1b5d6fc6fdb81968d
|
|
| BLAKE2b-256 |
97d69afc4c8ce1650ed52dd5bb29572206ea3d4f98443763a07ac7b7477fedf0
|