[PR #20] [MERGED] Human Service #216

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_deploy/pull/20
Author: @nerdai
Created: 6/20/2024
Status: Merged
Merged: 6/22/2024
Merged by: @nerdai

Base: mainHead: nerdai/human-service


📝 Commits (10+)

📊 Changes

9 files changed (+497 additions, -5 deletions)

View changed files

📝 agentfile/__init__.py (+2 -1)
📝 agentfile/message_queues/simple.py (+1 -0)
📝 agentfile/orchestrators/agent.py (+7 -4)
📝 agentfile/services/__init__.py (+2 -0)
agentfile/services/human.py (+229 -0)
example_scripts/agentic_human_local_single.py (+47 -0)
example_scripts/pipeline_human_local_single.py (+62 -0)
tests/services/test_human_service.py (+147 -0)
📝 tests/services/test_tool_service.py (+0 -0)

📄 Description

  • Add HumanService
  • Modifies Agent Orchestrator to route to HumanService
  • Add unit tests for HumanService
  • Add example_script for HumanService (sort of works, needs polishing IMO)

🔄 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/20 **Author:** [@nerdai](https://github.com/nerdai) **Created:** 6/20/2024 **Status:** ✅ Merged **Merged:** 6/22/2024 **Merged by:** [@nerdai](https://github.com/nerdai) **Base:** `main` ← **Head:** `nerdai/human-service` --- ### 📝 Commits (10+) - [`71e2d2f`](https://github.com/run-llama/llama_deploy/commit/71e2d2f4facd5a1708a6f7ef928229cd28e14ce4) start human service - [`2c19664`](https://github.com/run-llama/llama_deploy/commit/2c196642c291a12f2b94d835fa10effefcd17fc8) add input req - [`9bb7481`](https://github.com/run-llama/llama_deploy/commit/9bb748172065c6c7b15b4cdeedd64d50b80a6425) human service first unit test - [`c4e7f09`](https://github.com/run-llama/llama_deploy/commit/c4e7f093ee64809c1bd766ddfbc0b86038db3cf2) second unit test - [`9c6aa77`](https://github.com/run-llama/llama_deploy/commit/9c6aa778443b2aa03a6a0fcb1908ff5770f4f08b) add 3rd unit test - [`2c64c1b`](https://github.com/run-llama/llama_deploy/commit/2c64c1b6157a94b0895b63c2798092e7e29e6f38) add process from queue - [`b75a0df`](https://github.com/run-llama/llama_deploy/commit/b75a0df371161c6fa4a34eded4c7ad8c1471b499) nit - [`d50aca8`](https://github.com/run-llama/llama_deploy/commit/d50aca88544716571146a5ce3f4aec3f55bbcd42) start human local service script - [`7423b08`](https://github.com/run-llama/llama_deploy/commit/7423b083606b9c4a63c9436c6dd5ba1798a70eae) Merge branch 'main' into nerdai/human-service - [`36523fd`](https://github.com/run-llama/llama_deploy/commit/36523fded5514c134306d1dfcb470a23838c920f) update human service to TaskDefinition ### 📊 Changes **9 files changed** (+497 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `agentfile/__init__.py` (+2 -1) 📝 `agentfile/message_queues/simple.py` (+1 -0) 📝 `agentfile/orchestrators/agent.py` (+7 -4) 📝 `agentfile/services/__init__.py` (+2 -0) ➕ `agentfile/services/human.py` (+229 -0) ➕ `example_scripts/agentic_human_local_single.py` (+47 -0) ➕ `example_scripts/pipeline_human_local_single.py` (+62 -0) ➕ `tests/services/test_human_service.py` (+147 -0) 📝 `tests/services/test_tool_service.py` (+0 -0) </details> ### 📄 Description - Add HumanService - Modifies Agent Orchestrator to route to HumanService - Add unit tests for HumanService - Add example_script for HumanService (sort of works, needs polishing IMO) --- <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:30 -05:00
yindo closed this issue 2026-02-16 01:16:30 -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#216