Autumn
  • Welcome
    • Our Links
  • Getting Started
    • Installation
    • Configure Environment Variables
    • Features
  • Autumn Framework
    • The Framework
      • Installation
      • Configuration
      • Dependencies
      • Quick Start
      • Interaction Examples
  • Deploy Agent
  • The Architecture
  • Company
    • About
    • Terms Of Service
    • Privacy Policy
Powered by GitBook
On this page
  • Welcome to Autumn
  • Autumn in Action

Welcome

Welcome to Autumn

Autumn is a lightweight, open-source framework that enables developers to build and deploy AI agents directly from the command line. Acting as your dev-side companion, Autumn makes the process of crafting intelligent agents faster and more intuitive.

Built with developers in mind, Autumn offers a smooth workflow for agent creation—from initial scaffolding all the way to deployment on-chain. With native support for natural language understanding and access to blockchain data, building AI-native applications has never been easier.


Autumn in Action

🛠 Creating an AI Agent

Kick off by setting your agent’s role and tasks with just a few lines of code. Customize its purpose to fit your use case precisely.

import { deployAgent } from "autumn-framework";

const agentConfig = {
  name: "Siri",
  description: "An AI assistant focused on blockchain data.",
  capabilities: ["Fetch market cap", "Highlight trending tokens"],
};

deployAgent(agentConfig).then(() => {
  console.log("Agent successfully launched!");
});

🚀 Shipping to the Blockchain

Once your agent is configured, deploy it directly to the Solana blockchain using a single CLI command:

npm run deployautumn

NextOur Links

Last updated 1 day ago

Page cover image