Skip to content

Latest commit

 

History

History
61 lines (35 loc) · 4.52 KB

File metadata and controls

61 lines (35 loc) · 4.52 KB
graph LR
    FridayPlanner["FridayPlanner"]
    BasicPlanner["BasicPlanner"]
    Tool_Integration["Tool Integration"]
    Tool_Graph_Management["Tool Graph Management"]
    FridayPlanner -- "is a strategic alternative to" --> BasicPlanner
    FridayPlanner -- "utilizes" --> Tool_Integration
    BasicPlanner -- "utilizes" --> Tool_Integration
    FridayPlanner -- "internally relies on" --> Tool_Graph_Management
Loading

CodeBoardingDemoContact

Details

The planner subsystem in oscopilot is designed to manage and execute complex task plans, primarily through two distinct planning strategies: FridayPlanner and BasicPlanner. FridayPlanner offers advanced capabilities for complex task decomposition, leveraging Tool Graph Management to build and resolve dependencies among tools, ensuring a logical and ordered execution flow. In contrast, BasicPlanner provides a more streamlined approach for simpler plan adjustments and tool integration. Both planners interact with the Tool Integration component, which serves as a common interface for incorporating new tools or steps into an existing plan. This architecture allows for flexible planning strategies, from basic tool addition to sophisticated dependency-aware plan generation, all while maintaining clear component responsibilities and interactions.

FridayPlanner

Advanced planning engine for complex task decomposition and sophisticated plan revision, handling intricate tool dependencies and ensuring logical execution flow. It builds and manages a tool dependency graph for robust dependency resolution and topological sorting.

Related Classes/Methods:

BasicPlanner

Provides a straightforward and faster mechanism for task replanning and basic plan adjustments, primarily integrating new tools or steps into an existing plan without complex dependency resolution.

Related Classes/Methods:

Tool Integration

Represents the shared mechanism for incorporating new tools or steps into an existing plan, utilized by different planner implementations.

Related Classes/Methods:

Tool Graph Management

Encapsulates the logic for building, managing, and resolving dependencies within a tool graph, enabling topological sorting of tools. This functionality is critical for advanced planning.

Related Classes/Methods: