AFM CLI metapackage: installs afm-core and afm-langchain
Project description
AFM CLI
A command-line interface for running Agent-Flavored Markdown (AFM) agents.
This package provides everything you need to run AFM agents, including:
- afm-core: Parser, validation, and interface implementations
- afm-langchain: LangChain-based execution backend with support for OpenAI and Anthropic
Installation
pip install afm-cli
Quick Start
1. Set your API key
export OPENAI_API_KEY="your-api-key-here"
# or
export ANTHROPIC_API_KEY="your-api-key-here"
2. Create an AFM file
Create a file named agent.afm.md:
---
name: Friendly Assistant
interfaces:
- type: consolechat
model:
provider: openai
name: gpt-4o
---
# Role
You are a helpful and friendly AI assistant.
# Instructions
- Be concise but thorough in your responses
- If you don't know something, say so honestly
- Always be polite and professional
3. Run the agent
afm run agent.afm.md
This will start an interactive console chat with your agent.
Usage
afm run <file>
Run an AFM agent file and start its configured interfaces.
# Run with default settings
afm run agent.afm.md
# Run on a specific port (for web interfaces)
afm run agent.afm.md --port 8080
afm validate <file>
Validate an AFM file without running it.
afm validate agent.afm.md
afm framework list
List available execution backends.
afm framework list
Configuration
Environment Variables
OPENAI_API_KEY- Required for OpenAI modelsANTHROPIC_API_KEY- Required for Anthropic models
CLI Options
-p, --port PORT- Port for web interfaces (default: 8000)--help- Show help message
Features
Interface Types
AFM agents can expose multiple interfaces simultaneously:
- consolechat: Interactive terminal-based chat (default)
- webchat: HTTP API with built-in web UI
- webhook: Webhook endpoint for event-driven agents
MCP Tool Support
Agents can use external tools via Model Context Protocol (MCP).
For more examples and detailed documentation, see AFM Examples.
Docker
You can also run agents using Docker:
# Build the image
docker build -t afm-langchain-interpreter .
# Run with an AFM file mounted
docker run -v $(pwd)/agent.afm.md:/app/agent.afm.md \
-e OPENAI_API_KEY=$OPENAI_API_KEY \
-p 8000:8000 \
afm-langchain-interpreter afm /app/agent.afm.md
Documentation
For more detailed documentation, see the project README.
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file afm_cli-0.2.9.tar.gz.
File metadata
- Download URL: afm_cli-0.2.9.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbabf95fe65fb1b836517965270341cd3f97b15b9979c9e09d753112e0a2dfac
|
|
| MD5 |
156296586fa68a5aadfec590fb4f799b
|
|
| BLAKE2b-256 |
8dd0172c076dcefb86e6047331c4aa9fd8bbbafe6347aa18b1a19a6fa5d82229
|
File details
Details for the file afm_cli-0.2.9-py3-none-any.whl.
File metadata
- Download URL: afm_cli-0.2.9-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b4d32e69e259efcf350cd80d34f331bd1d8bfe4fa9de50e57f4a3a30e29a5c9
|
|
| MD5 |
69753f248ebe908173e212b981f4e6d0
|
|
| BLAKE2b-256 |
b0dc494e46ae566e75f8c0a821471fe3327c56f4a34112de333a552189c32ea6
|