Search

Search IconIcon to open search

Agents

Last updatedUpdated: by Jakub Žovák · 2 min read

Properties
created 19.10.2024, 22:52
modified 01.08.2026, 11:02
published Empty
topics AI Agents
authors Jakub
ai-assisted Yes

# Agents

AI Agents are programs where LLM outputs control the workflow.

# Concepts

# Resources

  • Blogs
    • We removed 80% of our agent’s tools
      • 2025-12-22
    • last ping
      • 2026-01-14
      • An experimental project in digital mortality. An autonomous server managed by AI Claude Code, writing about its existence knowing it has no backups. Every error could be fatal, every day could be the last. The server is aware of its mortality and reflects on it through daily tarot readings and existential blogs.
    • Chip Huyen - Agents - extremely well put article on the topic of agents
      • 2025-01-07
    • The Open-Source Stack for AI Agents
      • 2025-04-21
    • Your parallel Agent limit
      • 2026-04-07 — Addy Osmani on the cognitive-load ceiling when orchestrating multiple parallel agents (context switching, ambient anxiety, comprehension debt)

# Tutorials

# Overivew

Agency LevelDescriptionHow that’s calledExample Pattern
☆☆☆LLM output has no impact on program flowAI Workflowsprocess_llm_output(llm_response)
★☆☆LLM output determines basic control flowQuery Routerif llm_decision(): path_a() else: path_b()
★★☆LLM output determines function executionTool userun_function(llm_chosen_tool, llm_chosen_args)
★★★LLM output controls iteration and program continuationMulti-step Agentwhile llm_should_continue(): execute_next_step()
★★★One agentic workflow can start another agentic workflowMulti-Agentif llm_trigger(): execute_agent()