[PR #15] [MERGED] agentic orchestrator #211

Closed
opened 2026-02-16 01:16:28 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_deploy/pull/15
Author: @logan-markewich
Created: 6/17/2024
Status: Merged
Merged: 6/19/2024
Merged by: @logan-markewich

Base: mainHead: logan/agentic_orchestrator


📝 Commits (4)

📊 Changes

15 files changed (+633 additions, -101 deletions)

View changed files

📝 agentfile/control_plane/base.py (+1 -11)
📝 agentfile/control_plane/fastapi.py (+46 -73)
📝 agentfile/launchers/local.py (+3 -6)
agentfile/orchestrators/agent.py (+120 -0)
📝 agentfile/orchestrators/base.py (+4 -2)
agentfile/orchestrators/pipeline.py (+146 -0)
agentfile/orchestrators/service_component.py (+48 -0)
📝 agentfile/orchestrators/service_tool.py (+21 -9)
📝 agentfile/types.py (+1 -0)
example_scripts/agentic_local_single.py (+46 -0)
example_scripts/pipeline_local_single.py (+63 -0)
tests/orchestrators/__init__.py (+0 -0)
tests/orchestrators/test_agent_orchestrator.py (+134 -0)
tests/services/__init__.py (+0 -0)
📝 tests/services/test_agent_service.py (+0 -0)

📄 Description

Adds an agentic orchestrator to try and do semi-smart routing of tasks

Also added a query pipeline orchestrator

And lastly, added a dedicated folder for example scripts (we can remove later, mostly wanted us to keep track of what it looks like to use this thing)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/llama_deploy/pull/15 **Author:** [@logan-markewich](https://github.com/logan-markewich) **Created:** 6/17/2024 **Status:** ✅ Merged **Merged:** 6/19/2024 **Merged by:** [@logan-markewich](https://github.com/logan-markewich) **Base:** `main` ← **Head:** `logan/agentic_orchestrator` --- ### 📝 Commits (4) - [`03a275e`](https://github.com/run-llama/llama_deploy/commit/03a275ebd06279ad3c6860e5e58a85648dee53bd) agentic orchestrator - [`aaa7413`](https://github.com/run-llama/llama_deploy/commit/aaa7413e7ba49c181f771e5644d7bfedb71cd3f6) add pipeline orchestrator - [`4c2d80e`](https://github.com/run-llama/llama_deploy/commit/4c2d80ea700c75efffeacb2f83ae329913f9caec) fix tests - [`c965b53`](https://github.com/run-llama/llama_deploy/commit/c965b53b733f5f6447121f3cc7bb88a96dd11b26) add example scripts ### 📊 Changes **15 files changed** (+633 additions, -101 deletions) <details> <summary>View changed files</summary> 📝 `agentfile/control_plane/base.py` (+1 -11) 📝 `agentfile/control_plane/fastapi.py` (+46 -73) 📝 `agentfile/launchers/local.py` (+3 -6) ➕ `agentfile/orchestrators/agent.py` (+120 -0) 📝 `agentfile/orchestrators/base.py` (+4 -2) ➕ `agentfile/orchestrators/pipeline.py` (+146 -0) ➕ `agentfile/orchestrators/service_component.py` (+48 -0) 📝 `agentfile/orchestrators/service_tool.py` (+21 -9) 📝 `agentfile/types.py` (+1 -0) ➕ `example_scripts/agentic_local_single.py` (+46 -0) ➕ `example_scripts/pipeline_local_single.py` (+63 -0) ➕ `tests/orchestrators/__init__.py` (+0 -0) ➕ `tests/orchestrators/test_agent_orchestrator.py` (+134 -0) ➕ `tests/services/__init__.py` (+0 -0) 📝 `tests/services/test_agent_service.py` (+0 -0) </details> ### 📄 Description Adds an agentic orchestrator to try and do semi-smart routing of tasks Also added a query pipeline orchestrator And lastly, added a dedicated folder for example scripts (we can remove later, mostly wanted us to keep track of what it looks like to use this thing) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 01:16:28 -05:00
yindo closed this issue 2026-02-16 01:16:28 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/llama_deploy#211