This application is a multi-agent system designed to generate comprehensive travel plans by orchestrating several specialized agents. Each agent is responsible for a specific task in the overall workflow, and they interact via a directed graph that guides inputs, enriches them, collects human feedback, and ultimately provides curated travel proposals.
User Input:
The workflow begins when the user provides their travel preferences (e.g., “I would like to visit Barcelona”). This raw input is captured and passed to the system via the Manager
class.
Graph Initialization:
The Manager
(located in src/manager.py
) sets up the primary state graph which defines the sequence and connections between various agent nodes. For certain scenarios, an alternative graph (graph_only_researchers
) is available.
src/nodes/agents/context_enricher.py
human_in_the_loop
tool).src/nodes/llm/user_input_summary.py
src/nodes/llm/planner.py
src/nodes/hil/human_loop.py
src/nodes/llm/router.py
Researchers Manager Agent:
src/nodes/llm/research_manager.py
Specialized Agents:
src/nodes/agents/flight_researcher.py
src/nodes/agents/hotel_researcher.py
Persistent Caching for Research:
Both the flight and hotel search tools use a Redis-based persistent caching mechanism (implemented in src/cache/redis_cache.py
).
src/nodes/llm/finalizer.py
State Propagation:
A mutable State
object (defined in src/states/state.py
) is passed along the workflow. Each agent enriches or modifies this state.
Graph-Based Workflow:
The interconnected nodes in the workflow (outlined in src/graphs/graph.py
) allow for dynamic routing based on human feedback and intermediate results.
Debug and Iteration:
The Manager
class supports a debug mode, which enables iteration and continuous refinement of the plan based on user input.
To improve efficiency and reduce the number of expensive API calls, the application incorporates a Redis-based caching mechanism:
src/cache/redis_cache.py
using Redis.
search_flights
(located in src/nodes/agents/tools/amadeus/search_flights.py
) and search_hotels
(located in src/nodes/agents/tools/amadeus/search_hotels.py
) instantiate a local RedisCache instance during each tool invocation.There are no models linked
There are no models linked
There are no datasets linked
There are no datasets linked