Utilities for orchestrating OpenAI chat, tool calling, search, audio, and images from one helper package.
Project description
Easier OpenAI
Easier OpenAI wraps the official OpenAI Python SDK so you can drive modern assistants, manage tool selection, search files, and work with speech in one place.
What's Included
- Conversational
Assistanthelper with conversation memory and tool toggles. - Temporary vector store ingestion to ground answers in local notes.
- Built-in helpers for image generation and text-to-speech playback.
- Speech-to-text recording shortcuts for quick dictation.
- Optional
openai_functiondecorator re-exported for function tool schemas.
Installation
pip install easier-openai
Optional extras:
pip install "easier-openai[function_tools]" # decorator helpers
pip install "easier-openai[speech_models]" # whisper speech recognition models
Set OPENAI_API_KEY in your environment or pass it explicitly when constructing the assistant.
Quick Start
from easier_openai import Assistant
assistant = Assistant(api_key=None, model="gpt-4o", system_prompt="You are concise.")
response_text = assistant.chat("Summarize Rayleigh scattering in one sentence.")
print(response_text)
Ground replies with your files
notes = ["notes/overview.md", "notes/data-sheet.pdf"]
reply = assistant.chat(
"Highlight key risks from the attached docs",
file_search=notes,
tools_required="auto",
)
print(reply)
Generate speech from responses
assistant.full_text_to_speech(
"Ship a status update that sounds upbeat",
model="gpt-4o-mini-tts",
voice="alloy",
play=True,
)
Requirements
- Python 3.10 or newer
openai>=1.43.0typing_extensions>=4.7.0pydantic>=2.0.0
Contributing
Issues and pull requests are welcome. Please run checks locally before submitting changes.
License
This project is licensed under the Apache License 2.0.
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 easier_openai-0.3.3.tar.gz.
File metadata
- Download URL: easier_openai-0.3.3.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56078c57a371fb0e8e8a340eb882ae71a5ef77b0f14cd4d1394bf77a76d1475f
|
|
| MD5 |
0ddb10c8312bff47d6491729d6eb38b9
|
|
| BLAKE2b-256 |
4ab66bbea12738cf5584f545ed3ef1298558d25017bb173b433f0dff4b3ee6f6
|
File details
Details for the file easier_openai-0.3.3-py3-none-any.whl.
File metadata
- Download URL: easier_openai-0.3.3-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42b1f95be3439087c71708a63789f3720d36f7596ba52696867d7487f3afab8c
|
|
| MD5 |
7cd335722bc35e2a7d55901c199e3bf1
|
|
| BLAKE2b-256 |
7ebd03d31d0a09b29afa5c747644439a2c7597936197edb1b6e23683b2f8eddf
|