[PR #285] [CLOSED] feat: Add internal workflow registry to facilitate workflow discovery… #290

Closed
opened 2026-02-16 02:17:09 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/workflows-py/pull/285
Author: @adrianlyjak
Created: 1/16/2026
Status: Closed

Base: mainHead: adrian/wf-registry


📝 Commits (3)

  • 61e4a91 feat: Add internal workflow registry to facilitate workflow discovery for runtime plugins
  • 276c958 Protect against unhashable workflows
  • ffecc17 move them around

📊 Changes

15 files changed (+615 additions, -5 deletions)

View changed files

.changeset/plenty-horses-pay.md (+5 -0)
📝 AGENTS.md (+10 -0)
packages/llama-index-workflows/src/workflows/plugins/__init__.py (+8 -0)
packages/llama-index-workflows/src/workflows/plugins/_registry.py (+131 -0)
📝 packages/llama-index-workflows/src/workflows/runtime/broker.py (+1 -1)
📝 packages/llama-index-workflows/src/workflows/runtime/control_loop.py (+1 -1)
📝 packages/llama-index-workflows/src/workflows/runtime/types/_identity_weak_ref.py (+18 -0)
📝 packages/llama-index-workflows/src/workflows/runtime/workflow_plugin_registry.py (+0 -0)
📝 packages/llama-index-workflows/src/workflows/server/server.py (+33 -1)
📝 packages/llama-index-workflows/src/workflows/workflow.py (+10 -0)
📝 packages/llama-index-workflows/tests/runtime/test_control_loop.py (+1 -1)
📝 packages/llama-index-workflows/tests/runtime/test_identity_weak_ref.py (+97 -0)
packages/llama-index-workflows/tests/test_registry.py (+292 -0)
📝 packages/llama-index-workflows/tests/test_resources.py (+7 -0)
📝 uv.lock (+1 -1)

📄 Description

… for runtime plugins


🔄 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/workflows-py/pull/285 **Author:** [@adrianlyjak](https://github.com/adrianlyjak) **Created:** 1/16/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `adrian/wf-registry` --- ### 📝 Commits (3) - [`61e4a91`](https://github.com/run-llama/workflows-py/commit/61e4a91b89d483180a6414a160c8d701c35280f1) feat: Add internal workflow registry to facilitate workflow discovery for runtime plugins - [`276c958`](https://github.com/run-llama/workflows-py/commit/276c9588f6ff1cd0c0374590b40952b02a6a3e0d) Protect against unhashable workflows - [`ffecc17`](https://github.com/run-llama/workflows-py/commit/ffecc17ff805575d8d176df3f76330f116dbe820) move them around ### 📊 Changes **15 files changed** (+615 additions, -5 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/plenty-horses-pay.md` (+5 -0) 📝 `AGENTS.md` (+10 -0) ➕ `packages/llama-index-workflows/src/workflows/plugins/__init__.py` (+8 -0) ➕ `packages/llama-index-workflows/src/workflows/plugins/_registry.py` (+131 -0) 📝 `packages/llama-index-workflows/src/workflows/runtime/broker.py` (+1 -1) 📝 `packages/llama-index-workflows/src/workflows/runtime/control_loop.py` (+1 -1) 📝 `packages/llama-index-workflows/src/workflows/runtime/types/_identity_weak_ref.py` (+18 -0) 📝 `packages/llama-index-workflows/src/workflows/runtime/workflow_plugin_registry.py` (+0 -0) 📝 `packages/llama-index-workflows/src/workflows/server/server.py` (+33 -1) 📝 `packages/llama-index-workflows/src/workflows/workflow.py` (+10 -0) 📝 `packages/llama-index-workflows/tests/runtime/test_control_loop.py` (+1 -1) 📝 `packages/llama-index-workflows/tests/runtime/test_identity_weak_ref.py` (+97 -0) ➕ `packages/llama-index-workflows/tests/test_registry.py` (+292 -0) 📝 `packages/llama-index-workflows/tests/test_resources.py` (+7 -0) 📝 `uv.lock` (+1 -1) </details> ### 📄 Description … for runtime plugins --- <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 02:17:09 -05:00
yindo closed this issue 2026-02-16 02:17:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/workflows-py#290