Skip to main content
RunAgent provides Python, JavaScript, Rust, and Go SDKs along with a powerful CLI for deploying and managing AI agents across multiple frameworks.

Install RunAgent CLI

  • Python
Before installing RunAgent, ensure you have Python 3.8+.
1

Install RunAgent CLI & Python SDK

pip install runagent
The CLI comes bundled with the Python SDK for seamless local development.
2

Verify Installation

Check that RunAgent is installed correctly:
runagent --version
3

Setup Authentication (Optional)

For cloud deployment and middleware sync features, configure your authentication:
runagent setup
This will prompt you to choose between:
  • Express Setup (Browser login): Opens your browser for secure authentication
  • Manual Setup: Enter your API key directly
Express Setup uses device code authentication - you’ll get a code to enter in your browser, and the CLI will automatically complete the setup once you authenticate.
To view your current configuration:
runagent whoami
To reconfigure:
runagent setup --again

Install RunAgent SDK

  • Python
  • JavaScript
  • Rust
  • Go
When RunAgent CLI is installed, the Python SDK is installed as a dependency. You can install it manually as well.
1

Install RunAgent Python SDK

pip install runagent
The CLI comes bundled with the Python SDK for seamless local development.

Framework Templates

RunAgent provides pre-built templates for popular AI frameworks to get you started quickly:
  • LangGraph
  • LangChain
  • CrewAI
  • Custom
1

Initialize LangGraph Project

runagent init my_langgraph_agent --langgraph
2

What's Included

  • Pre-configured LangGraph agent setup
  • Streaming and non-streaming entrypoints
  • Sample state management examples
  • Ready-to-deploy configuration

Next Steps

After installation, you can:
  1. Initialize your first agent: runagent init my_agent
  2. Start the development server: runagent serve my_agent
  3. Connect from your application using any of our SDKs
  4. Deploy to production (coming soon): runagent deploy my_agent