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
  • 🤖 Agent Interaction Examples with Autumn
  • 🧠 Ask Questions to an Agent
  • 🚀 Define and Deploy an Agent
  • 💬 Converse with an Agent
  • 📊 Example Queries
  1. Autumn Framework
  2. The Framework

Interaction Examples

🤖 Agent Interaction Examples with Autumn

With Autumn, you can interact with AI agents directly from the command line using natural language. Below are some example commands to help you get started.


🧠 Ask Questions to an Agent

Use the CLI to query an Autumn agent for blockchain insights:

npm run askautumn Siri "What is the market cap of Solana?"

🚀 Define and Deploy an Agent

  1. Open src/defineAgent.ts to customize your agent or token configuration.

  2. Build and deploy using:

npm run build
npm run deployautumn

💬 Converse with an Agent

Interact with your deployed agent using simple natural language prompts:

npm run interactautumn Siri ask "Your question here"

📊 Example Queries

Find trending tokens:

npm run interactautumn Siri ask "Trending token 24h"

Get top token holders:

npm run interactautumn Siri ask "Top holders: {mintAddress}"

Check market cap info:

npm run interactautumn Siri ask "Marketcap count:{count} term:\"{term}\""

Identify top buyers:

npm run interactautumn Siri ask "First top {count} buyers for: {mintAddress}"

PreviousQuick StartNextDeploy Agent

Last updated 2 days ago