The standard for capable and reliable agents in production
Project description
StableAgents Framework
A production-ready framework for building enterprise-grade AI agents - providing robust infrastructure and system-level capabilities that enable reliable, secure, and efficient AI agent operations at scale.
Official site: stableagents.dev
Overview
StableAgents is designed to be the foundation for large-scale AI agent deployments with a focus on:
- Reliability: Built-in self-healing mechanisms ensure consistent operation even under adverse conditions
- Scalability: Architecture supports everything from single-agent deployments to complex multi-agent systems
- Security: Enterprise-grade authentication, access controls, and data protection mechanisms
- Extensibility: Modular design allows for customization and extension of core capabilities
Key Features
- Multi-Provider Support: Seamlessly integrate with OpenAI, Anthropic, and other AI providers
- Local Model Integration: Run models offline with local inference capabilities
- Self-Healing System: Automatic issue detection, diagnosis, and recovery
- Memory Management: Efficient handling of context and persistent storage
- Computer Control: Safe system interaction capabilities
- Comprehensive Logging: Detailed activity tracking and monitoring
Quick Installation
Option 1: Install from GitHub (Recommended)
pip install git+https://github.com/jordanplows/stableagents.git
Option 2: Install with Local Models Support
pip install git+https://github.com/jordanplows/stableagents.git[local]
Option 3: Development Installation
git clone https://github.com/jordanplows/stableagents.git
cd stableagents
pip install -e .
Quick Start
After installation, start StableAgents:
stableagents-ai --start
The CLI will guide you through:
- API Key Setup: Choose between managed keys ($20) or bring your own
- Provider Selection: Configure OpenAI, Anthropic, Google, or local models
- Security Setup: Set up encrypted storage for your credentials
Basic Usage
Python API
from stableagents import StableAgents
# Initialize the agent
agent = StableAgents()
# Generate text
response = agent.generate_text("Hello, how can you help me today?")
print(response)
Command Line Interface
# Start interactive mode
stableagents-ai
# Run with specific model
stableagents-ai --model openai --api-key your-key
# Use local models
stableagents-ai --local --model-path ~/models/llama-2-7b.gguf
Access
StableAgents is a private framework available to authorized partners and enterprise customers. For access inquiries:
- Visit: stableagents.dev
- Contact: support@stableagents.dev
Documentation
Comprehensive documentation is available to authorized users at docs.stableagents.dev
Implementation Examples
Basic Agent Setup
from stableagents import StableAgents
# Initialize with enterprise configuration
agent = StableAgents(
enable_self_healing=True,
enable_logging=True
)
# Configure AI provider
agent.set_api_key('openai', 'your-api-key')
agent.set_active_ai_provider('openai')
# Generate text with the agent
response = agent.generate_text("Analyze the performance of our product in Q1")
Custom Health Check Integration
# Register custom component for monitoring
agent.self_healing.register_component(
"database",
check_database_health,
thresholds={
"connection_status": {"min": True, "severity": "high"}
}
)
Use Cases
- Customer Service: Deploy conversational agents that can understand, respond, and solve customer issues
- Enterprise Assistants: Create specialized assistants for internal business processes
- Data Analysis: Build agents that can process, analyze, and report on complex business data
- Content Generation: Develop agents for content creation, curation, and management
- Research Automation: Automate literature reviews, data collection, and preliminary analysis
License
Proprietary software licensed exclusively to authorized partners and customers.
© 2023-2025 StableAgents. All rights reserved.
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 stableagents_ai-0.2.8.tar.gz.
File metadata
- Download URL: stableagents_ai-0.2.8.tar.gz
- Upload date:
- Size: 85.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.11 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e28cb1f5c424693aadd0a57028b2f10f53ba4d65bfff3f812af3ff3fcf53da5
|
|
| MD5 |
846f490105fa90c1dcea671d490398f0
|
|
| BLAKE2b-256 |
144cb5dedba15361d85f4214a47061734930182afc9c520e5288a3c58b5c38b1
|
File details
Details for the file stableagents_ai-0.2.8-py3-none-any.whl.
File metadata
- Download URL: stableagents_ai-0.2.8-py3-none-any.whl
- Upload date:
- Size: 95.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.11 Darwin/24.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f516fccf4b9f3ea4ea08dc5780e00804c871360defa5b77a07b407c75a28341
|
|
| MD5 |
3587d9b00ac6dac92f0318a11c1d52c6
|
|
| BLAKE2b-256 |
ab3e9c8ce63ebf582d741af86d777d48ce2d511398e34a12a45abeea7e35044d
|