Production-ready AI framework for building LLM-powered applications with unified tool calling across multiple providers
Reason this release was yanked:
Security issue
Project description
Orchestral
AI agent framework with unified tool calling across multiple LLM providers
Features
- Web-based conversation interface with persistence
- Support for Anthropic (Claude), OpenAI (GPT), and Google (Gemini)
- Extensible tool system for file operations, code execution, and web search
- Real-time streaming responses with cost tracking
- Conversation management (rename, duplicate, delete, undo)
Quick Start
Prerequisites
- Python 3.12 or higher
- OpenAI API key (required for core functions)
- Additional provider keys optional (Anthropic, Google)
Installation
Mac/Linux:
git clone https://github.com/orchestralAI/orchestral-core.git
cd orchestral-core
./setup.sh
Windows:
git clone https://github.com/orchestralAI/orchestral-core.git
cd orchestral-core
setup.bat
The setup script will install dependencies and prompt you to configure API keys interactively.
Running the App
Activate the virtual environment:
source orchestral-env/bin/activate # Mac/Linux
orchestral-env\Scripts\activate # Windows
Start the web interface:
python demos/app_demo.py
The app will open at http://127.0.0.1:8000
| !! NOTE: By default the agents have the ability to execute code on your computer |
|---|
API Keys
The setup script will guide you through adding API keys. You can also edit .env manually:
OPENAI_API_KEY=sk-proj-... # Required
ANTHROPIC_API_KEY=sk-ant-... # Optional
GOOGLE_API_KEY=AIza... # Optional
Get your keys:
- OpenAI: https://platform.openai.com/api-keys
- Anthropic: https://console.anthropic.com/
- Google: https://aistudio.google.com/app/apikey
Using the Interface
- Send messages - Type and press Enter (Shift+Enter for new line)
- New conversation - Click "+" in sidebar
- Manage conversations - Click "⋯" to rename, duplicate, or delete
- Track costs - Click "Cost" button
- Undo - Remove last message
- Interrupt - Press Esc while agent is processing
Available Tools
- RunCommandTool - Execute shell commands
- RunPythonTool - Run Python code
- WriteFileTool - Create and modify files
- ReadFileTool - Read file contents
- WebSearchTool - Search the web
File operations are scoped to app/workspace/ for safety.
Project Structure
orchestral_core/
├── orchestral/ # Core framework
│ ├── agent/ # Agent orchestration
│ ├── llm/ # LLM provider clients
│ ├── tools/ # Tool system
│ └── ui/ # UI components
├── app/ # Web application
│ ├── server.py # Web server
│ ├── workspace/ # Agent workspace
│ └── conversations/ # Saved conversations
└── demos/ # Demo scripts
Documentation
- CONTRIBUTING.md - Development guidelines
- orchestral_core/CLAUDE.md - Framework overview
- app/README.md - Web app architecture
Troubleshooting
Module not found:
cd orchestral_core && pip install -e .
API key errors:
- Verify
.envexists and contains your keys - Check for extra spaces or quotes
Port 8000 in use:
Edit demos/app_demo.py and change the port number
Windows activation issues:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
License
All code contained in this repository is the property of Orchestral AI. Unauthorized reproduction, use, or distribution of this code, in whole or in part, is strictly prohibited without prior written permission from Alex Roman or an authorized representative of Orchestral AI.
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 orchestral_sdk-0.1.2-py3-none-any.whl.
File metadata
- Download URL: orchestral_sdk-0.1.2-py3-none-any.whl
- Upload date:
- Size: 693.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40dacd9266a37201316a2b7d55bcc5fffc927c556d10d165406e19db0ddaabf9
|
|
| MD5 |
dd1d8c479c524cb31de2556e86fa9e84
|
|
| BLAKE2b-256 |
b57dc0627bfff777b59d581209d1a1b40fddfc395f461a4feedf3c6a2308a96c
|