Welcome
The Arche Framework open-source code allows users to create AI agents directly in their CLI, with Arche acting as a co-pilot to help build them.
ArcheAI framework acts as a co-pilot for developers, helping them manage the complexities of AI agent creation, deployment, and blockchain integration. With built-in tools for natural language processing and blockchain queries.
ArcheAI Framework in Action
Agent Creation: Define an agent’s behavior and purpose using a few lines of code. Customize its features to suit your needs.
const agentConfig = {
name: "Aura",
description: "A blockchain insights assistant.",
behaviors: ["Fetch market cap", "Provide trending tokens"],
};
deployAgent(agentConfig);import { deployAgent } from "archeai-framework";
const agentConfig = {
name: "Aura",
description: "A blockchain analytics AI agent.",
capabilities: ["Fetch market cap", "Identify trending tokens"],
};
deployAgent(agentConfig).then(() => {
console.log("Agent deployed successfully!");
});Agent Deployment: Publish the defined agent to the Solana blockchain using the CLI:
Last updated
