Archeos
Create powerful AI agent workflows with just a few lines of code, enabling complex task automation and decision-making processes.
npm install archeos
Available for all major programming languages
import { Swarm, Agent } from 'ai-agent-sdk';
const client = new Swarm();
const transferToAgentB = (): Agent => {
return agentB;
};
const agentA = new Agent({
name: "Agent A",
instructions: "You are a helpful agent.",
functions: [transferToAgentB],
});
const agentB = new Agent({
name: "Agent B",
instructions: "Only speak in Haikus.",
});
const run = async () => {
const response = await client.run({
agent: agentA,
messages: [{ role: "user", content: "I want to talk to agent B." }],
});
console.log('Response:', response);
};
run();
Use Cases
Tool Integration
Seamlessly integrate external APIs and tools into agent workflows.
[2023-12-15 14:23:45] INFO
Agent initialized. Starting task execution.
[2023-12-15 14:23:47] ACTION
Retrieving data from external API...
[2023-12-15 14:23:50] DECISION
Analyzing data. Confidence: 85%
[2023-12-15 14:23:52] WARNING
Potential anomaly detected in dataset.
[2023-12-15 14:23:55] ERROR
Failed to connect to secondary database.
Monitor agent activity
Track and analyze your AI agent performance with detailed activity logs.
Build once, run anywhere
Create AI agents that work seamlessly across different platforms.
Features
Cross-Language Support
Available in all major programming languages for maximum flexibility.
Learn more >Customizable Agents
Design and customize agents to fit your specific use case and requirements.
Learn more >Efficient Execution
Optimize agent performance with built-in efficiency and scalability features.
Learn more >Ready to build your next AI agent?