Modular Python framework for building AI agents with persistent memory
Project description
Karo Framework
Karo is a modular Python framework designed for building robust and maintainable AI agent applications. It emphasizes:
- Modularity: Construct agents from reusable components (core logic, memory, tools).
- Predictability: Define clear agent interactions using Pydantic schemas.
- Memory: Equip agents with persistent memory using vector stores like ChromaDB.
- Extensibility: Easily integrate various LLM providers and custom tools.
- Control: Maintain fine-grained control over agent behavior and data flow.
Inspired by frameworks like Atomic Agents, Karo aims to provide developers with the building blocks needed for creating sophisticated, reliable AI agents.
Key Features
- Schema-Driven Development: Use Pydantic for defining agent inputs, outputs, and tool parameters.
- Provider Abstraction: Pluggable interface for different LLM providers (OpenAI included).
- Persistent Memory: Built-in
MemoryManagerusingChromaDBServicefor storing and retrieving relevant context. - Tool Integration: Define and integrate custom tools for agents to use.
- Pythonic Control Flow: All agent logic and orchestration is written in Python.
Installation
pip install karo
See the full Installation Guide for details on setting up dependencies and environment variables (like OPENAI_API_KEY).
Quickstart
Here's a minimal example of creating a basic agent:
import os
from dotenv import load_dotenv
from karo.core.base_agent import BaseAgent, BaseAgentConfig
from karo.providers.openai_provider import OpenAIProvider, OpenAIProviderConfig
from karo.schemas.base_schemas import BaseInputSchema, BaseOutputSchema
# Load API keys from .env file in your project root
load_dotenv()
# Configure provider (requires OPENAI_API_KEY in .env)
provider_config = OpenAIProviderConfig(model="gpt-4o-mini")
provider = OpenAIProvider(config=provider_config)
# Configure agent
agent_config = BaseAgentConfig(provider=provider)
agent = BaseAgent(config=agent_config)
# Run agent
input_data = BaseInputSchema(chat_message="Explain the concept of AI agents briefly.")
result = agent.run(input_data)
if isinstance(result, BaseOutputSchema):
print(f"Agent: {result.response_message}")
else:
print(f"Error: {result.error_message}")
For more detailed examples, including memory and tool usage, check out the Quickstart Guide.
Documentation
Full documentation, including guides and API references, can be found in the docs/ directory (or at the hosted documentation site - link TBD).
- Installation
- Quickstart Guide
- (More guides coming soon)
License
Copyright 2025 Mensterra
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
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 karo-0.3.0.tar.gz.
File metadata
- Download URL: karo-0.3.0.tar.gz
- Upload date:
- Size: 53.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.3 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37200202e3953df039fb2455a7c862138f6e302c59ba4e95e8bca91deee30a36
|
|
| MD5 |
fdfed4009bda8c0c825db7b1ca80b19c
|
|
| BLAKE2b-256 |
03feb00052a8f28f8e35f8ca53a0c4e2a04ff69d02fd7f7f729f99b30c0b9ecc
|
File details
Details for the file karo-0.3.0-py3-none-any.whl.
File metadata
- Download URL: karo-0.3.0-py3-none-any.whl
- Upload date:
- Size: 75.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.3 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38d39bb78cd1cd9e1e170c49cd397c081d90fa30cb8115174462d3c261c0ed6e
|
|
| MD5 |
d6e0fbd457ecf8e0df58e3c0a3b6b058
|
|
| BLAKE2b-256 |
09a174d3f1c7f33c55f46629a14e1a43d6e57786b34741a1e801f4117d9ed2d5
|