Agentarium: A Python Framework for AI Agent Simulations
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
Agentarium is an open-source Python framework designed for creating and managing simulations with AI-powered agents. It offers an intuitive platform for designing complex, interactive environments where agents can act, learn, and evolve. This powerful tool simplifies the orchestration of multiple AI agents and their interactions.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introdução
Agentarium é um framework Python de código aberto para criar e gerenciar simulações populadas com agentes alimentados por IA. Ele fornece uma plataforma intuitiva para projetar ambientes complexos e interativos onde os agentes podem agir, aprender e evoluir. Este poderoso framework simplifica a orquestração de múltiplos agentes de IA, oferecendo uma maneira flexível de criar, gerenciar e coordenar interações entre eles em vários ambientes.
Instalação
Para começar com o Agentarium, você pode instalá-lo facilmente usando pip:
pip install agentarium
Exemplos
Agentarium oferece uma abordagem direta para construir e gerenciar interações de agentes de IA. Aqui estão alguns exemplos demonstrando suas capacidades.
Exemplo Básico de Chat
Crie uma interação de chat simples entre agentes:
from agentarium import Agent
# Create agents with specific characteristics
alice = Agent.create_agent(name="Alice", occupation="Software Engineer")
bob = Agent.create_agent(name="Bob", occupation="Data Scientist")
# Direct communication
alice.talk_to(bob, "Hello Bob! I heard you're working on some interesting projects.")
# Let Bob autonomously decide how to respond
bob.act()
Adicionando Ações Personalizadas
Adicione novas capacidades aos seus agentes:
from agentarium import Agent, Action
# Define a simple greeting action
def greet(name: str, **kwargs) -> str:
return f"Hello, {name}!"
# Create an agent and add the greeting action
agent = Agent.create_agent(name="Alice")
agent.add_action(
Action(
name="GREET",
description="Greet someone by name",
parameters=["name"],
function=greet
)
)
# Use the custom action
agent.execute_action("GREET", "Bob")
Mais exemplos podem ser encontrados no diretório examples/ do repositório.
Porquê usar Agentarium?
Agentarium se destaca com um conjunto robusto de recursos projetados para capacitar desenvolvedores na construção de sistemas sofisticados de agentes de IA:
- Gerenciamento de Agentes: Crie e orquestre múltiplos agentes de IA com diferentes funções e capacidades.
- Tomada de Decisão Autônoma: Agentes podem tomar decisões e realizar ações com base em seu contexto.
- Sistema de Checkpoint: Salve e restaure estados e interações de agentes para reprodutibilidade.
- Ações Personalizáveis: Defina ações personalizadas além das capacidades padrão de falar/pensar.
- Memória e Contexto: Agentes mantêm memória de interações passadas para respostas contextuais.
- Integração com IA: Integração perfeita com vários provedores de IA através do aisuite.
- Otimizado para Desempenho: Construído para eficiência e escalabilidade.
- Arquitetura Extensível: Fácil de estender e personalizar para suas necessidades específicas.
Links
Para informações mais detalhadas, exemplos e para contribuir com o projeto, visite os recursos oficiais:
Related repositories
Similar repositories that may be relevant next.

Agent Sandbox: Secure Local Development for AI Coding Agents
August 17, 2026
Agent Sandbox provides a robust and secure local development environment specifically designed for collaborating with AI coding agents. It ensures minimal filesystem access, configurable network egress policies, and secure secret injection, protecting your local machine from potentially risky agent operations. This project supports various AI agents and integrates seamlessly with both CLI and popular IDE devcontainer setups.

AMD Skills: Empowering AI Agents with AMD's Optimized Software Stack
August 16, 2026
AMD Skills is the official catalog of AI agent skills from AMD, designed to empower AI agents with optimized software for AMD hardware. This repository provides knowledge, scripts, and conventions for working with AMD's stack, enabling seamless integration with major coding agents like Cursor, Claude Code, OpenAI Codex, and Gemini CLI.

agent-tackle-box: A Terminal Debugger for LangGraph & LangChain Agents
August 15, 2026
agent-tackle-box is a comprehensive toolkit for developing AI agents, featuring the powerful `agent-debugger`. This terminal debugger provides deep insights into LangGraph and LangChain agents. It allows developers to inspect state, monitor tool calls, and step through Python code, all within a unified Textual UI.

ADR: Uber's Enterprise Security System for AI Agents
August 14, 2026
ADR (Agentic AI Detection and Response) is an enterprise security system developed by Uber to secure AI agents. It offers critical capabilities like observability, security benchmarking, and threat detection, ensuring the safe operation of both employee and customer-facing AI applications. This open-source project is deployed in production at Uber and was accepted to MLSys 2026.
Source repository
Open the original repository on GitHub.
13 counted GitHub visits