[PR #98] [MERGED] [docs] Add docstrings #260

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_deploy/pull/98
Author: @logan-markewich
Created: 7/3/2024
Status: Merged
Merged: 7/3/2024
Merged by: @logan-markewich

Base: mainHead: logan/add_docstrings


📝 Commits (2)

📊 Changes

23 files changed (+837 additions, -15 deletions)

View changed files

📝 llama_agents/control_plane/base.py (+40 -9)
📝 llama_agents/control_plane/server.py (+36 -0)
📝 llama_agents/launchers/local.py (+46 -0)
📝 llama_agents/launchers/server.py (+45 -0)
📝 llama_agents/message_consumers/base.py (+4 -1)
📝 llama_agents/message_consumers/callable.py (+5 -0)
📝 llama_agents/message_consumers/remote.py (+10 -0)
📝 llama_agents/message_publishers/publisher.py (+8 -1)
📝 llama_agents/message_queues/simple.py (+30 -0)
📝 llama_agents/messages/base.py (+28 -0)
📝 llama_agents/orchestrators/agent.py (+45 -0)
📝 llama_agents/orchestrators/base.py (+10 -0)
📝 llama_agents/orchestrators/pipeline.py (+38 -0)
📝 llama_agents/services/agent.py (+81 -0)
📝 llama_agents/services/base.py (+14 -1)
📝 llama_agents/services/component.py (+47 -0)
📝 llama_agents/services/human.py (+45 -0)
📝 llama_agents/services/tool.py (+71 -0)
📝 llama_agents/tools/agent_service_tool.py (+63 -3)
📝 llama_agents/tools/meta_service_tool.py (+36 -0)

...and 3 more files

📄 Description

In preparation for API docs, we needed a lot of docstrings.

Fixes #39


🔄 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/98 **Author:** [@logan-markewich](https://github.com/logan-markewich) **Created:** 7/3/2024 **Status:** ✅ Merged **Merged:** 7/3/2024 **Merged by:** [@logan-markewich](https://github.com/logan-markewich) **Base:** `main` ← **Head:** `logan/add_docstrings` --- ### 📝 Commits (2) - [`f7f6cd7`](https://github.com/run-llama/llama_deploy/commit/f7f6cd72f19c5be52e0d61e9fecc33d1cb9b1970) wip - [`44fdb0d`](https://github.com/run-llama/llama_deploy/commit/44fdb0dc6881dfa99da6e1287287bc53d19e6d05) so many docstrings ### 📊 Changes **23 files changed** (+837 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `llama_agents/control_plane/base.py` (+40 -9) 📝 `llama_agents/control_plane/server.py` (+36 -0) 📝 `llama_agents/launchers/local.py` (+46 -0) 📝 `llama_agents/launchers/server.py` (+45 -0) 📝 `llama_agents/message_consumers/base.py` (+4 -1) 📝 `llama_agents/message_consumers/callable.py` (+5 -0) 📝 `llama_agents/message_consumers/remote.py` (+10 -0) 📝 `llama_agents/message_publishers/publisher.py` (+8 -1) 📝 `llama_agents/message_queues/simple.py` (+30 -0) 📝 `llama_agents/messages/base.py` (+28 -0) 📝 `llama_agents/orchestrators/agent.py` (+45 -0) 📝 `llama_agents/orchestrators/base.py` (+10 -0) 📝 `llama_agents/orchestrators/pipeline.py` (+38 -0) 📝 `llama_agents/services/agent.py` (+81 -0) 📝 `llama_agents/services/base.py` (+14 -1) 📝 `llama_agents/services/component.py` (+47 -0) 📝 `llama_agents/services/human.py` (+45 -0) 📝 `llama_agents/services/tool.py` (+71 -0) 📝 `llama_agents/tools/agent_service_tool.py` (+63 -3) 📝 `llama_agents/tools/meta_service_tool.py` (+36 -0) _...and 3 more files_ </details> ### 📄 Description In preparation for API docs, we needed a lot of docstrings. Fixes #39 --- <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:39 -05:00
yindo closed this issue 2026-02-16 01:16:39 -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#260