ai_agents
// Observe → Think → Act → Observe → … — the agent loop step by step
TASK: "What is the current weather in Paris and convert 25°C to Fahrenheit?"
AVAILABLE TOOLS:
🌤 get_weather(city)
🔢 temp_convert(value, unit)
🧮 calculator(expr)
Step 0 / 0
Ready — click "step" to begin
Agent execution log will appear here…
What is an AI Agent?
An AI agent is an LLM that can take actions in a loop. Unlike a single-turn chatbot, an agent can call tools (APIs, search, code), observe the results, and decide what to do next — repeating until the task is done. ReAct (Reason + Act) is the most common pattern.
also by echobash