Once you’ve discovered agents and configured your environment, running them is simple.You can launch and interact with agents using the graphical interface or the command line. To open the GUI, run:
beeai run chat "Hello! How can you help me today?"
GPT Researcher
Copy
Ask AI
beeai run gpt_researcher "Research the latest developments in quantum computing"
Aider - Code Assistant
Copy
Ask AI
beeai run aider "Review this Python function and suggest improvements:def calculate_fibonacci(n): if n <= 1: return n return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)"
Prompt Chaining: GPT Researcher -> Chat Agent
Copy
Ask AI
beeai run gpt_researcher "Latest developments in renewable energy storage" | beeai run chat "Summarize this research in 3 key bullet points"
beeai run aider "Review this Python function and suggest improvements:def calculate_fibonacci(n): if n <= 1: return n return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)"