[PR #277] [MERGED] Separate server/client, and move to llama_agents namespace #281

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/workflows-py/pull/277
Author: @adrianlyjak
Created: 1/13/2026
Status: Merged
Merged: 1/29/2026
Merged by: @adrianlyjak

Base: mainHead: adrian/server-pkg


📝 Commits (10+)

  • 250e3fa prep packages
  • 975607c wrong coverage detection I think
  • ecf0052 add ts deps?
  • 693e6ef extend path for namespaces
  • addf914 the big move, import issues though
  • b1cc13a llama_index.workflows
  • aa809a6 llama_agents
  • 009b8a3 alias may be working
  • 8a87dbb add type checker ignores for workflows secondary namespace, update ty, and add re-exports
  • 2721971 Add descriptions to new client and server packages

📊 Changes

70 files changed (+1387 additions, -1036 deletions)

View changed files

.changeset/afraid-books-own.md (+7 -0)
📝 .github/workflows/test.yml (+1 -1)
📝 .pre-commit-config.yaml (+1 -1)
📝 docs/src/content/docs/llamaagents/workflows/deployment.md (+4 -4)
📝 examples/client/base/workflow_client.py (+1 -1)
📝 examples/client/base/workflow_server.py (+1 -1)
📝 examples/client/human_in_the_loop/workflow_client_hitl.py (+1 -1)
📝 examples/client/human_in_the_loop/workflow_server_hitl.py (+1 -1)
📝 examples/docker/app.py (+1 -1)
📝 examples/server/fastapi_server_example.ipynb (+204 -297)
examples/server/server.py (+90 -0)
📝 examples/server/server_example.ipynb (+302 -404)
📝 examples/server/server_example.py (+1 -1)
📝 packages/llama-index-utils-workflow/package.json (+4 -1)
📝 packages/llama-index-workflows-client/README.md (+0 -0)
packages/llama-index-workflows-client/package.json (+10 -0)
packages/llama-index-workflows-client/pyproject.toml (+20 -0)
packages/llama-index-workflows-client/src/llama_agents/client/__init__.py (+3 -0)
📝 packages/llama-index-workflows-client/src/llama_agents/client/client.py (+3 -3)
packages/llama-index-workflows-client/src/llama_agents/client/protocol/__init__.py (+84 -0)

...and 50 more files

📄 Description

No description provided


🔄 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/277 **Author:** [@adrianlyjak](https://github.com/adrianlyjak) **Created:** 1/13/2026 **Status:** ✅ Merged **Merged:** 1/29/2026 **Merged by:** [@adrianlyjak](https://github.com/adrianlyjak) **Base:** `main` ← **Head:** `adrian/server-pkg` --- ### 📝 Commits (10+) - [`250e3fa`](https://github.com/run-llama/workflows-py/commit/250e3fa2d34b40863cf5b950815f296bc0276877) prep packages - [`975607c`](https://github.com/run-llama/workflows-py/commit/975607cef03e10bc09a5759a887151c5066dbf6e) wrong coverage detection I think - [`ecf0052`](https://github.com/run-llama/workflows-py/commit/ecf00525231fbbd2350309667aff0efbf83952d7) add ts deps? - [`693e6ef`](https://github.com/run-llama/workflows-py/commit/693e6efe7d624ddb975f09a569c0c176edd12b8c) extend path for namespaces - [`addf914`](https://github.com/run-llama/workflows-py/commit/addf914366ee0b2879efb9146e0bbc97a0257422) the big move, import issues though - [`b1cc13a`](https://github.com/run-llama/workflows-py/commit/b1cc13a2f3f59105a9f19dddbeac155d9212c6a3) llama_index.workflows - [`aa809a6`](https://github.com/run-llama/workflows-py/commit/aa809a67610131bba9a395a87db183ee63e706ee) llama_agents - [`009b8a3`](https://github.com/run-llama/workflows-py/commit/009b8a320583e2633478591e4051ae9b4b7d5cfd) alias may be working - [`8a87dbb`](https://github.com/run-llama/workflows-py/commit/8a87dbb981f81a7f8cdcf47e2fea19375a829a11) add type checker ignores for workflows secondary namespace, update ty, and add re-exports - [`2721971`](https://github.com/run-llama/workflows-py/commit/2721971f27b47d4a9e2274c1df790f73cb3b742c) Add descriptions to new client and server packages ### 📊 Changes **70 files changed** (+1387 additions, -1036 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/afraid-books-own.md` (+7 -0) 📝 `.github/workflows/test.yml` (+1 -1) 📝 `.pre-commit-config.yaml` (+1 -1) 📝 `docs/src/content/docs/llamaagents/workflows/deployment.md` (+4 -4) 📝 `examples/client/base/workflow_client.py` (+1 -1) 📝 `examples/client/base/workflow_server.py` (+1 -1) 📝 `examples/client/human_in_the_loop/workflow_client_hitl.py` (+1 -1) 📝 `examples/client/human_in_the_loop/workflow_server_hitl.py` (+1 -1) 📝 `examples/docker/app.py` (+1 -1) 📝 `examples/server/fastapi_server_example.ipynb` (+204 -297) ➕ `examples/server/server.py` (+90 -0) 📝 `examples/server/server_example.ipynb` (+302 -404) 📝 `examples/server/server_example.py` (+1 -1) 📝 `packages/llama-index-utils-workflow/package.json` (+4 -1) 📝 `packages/llama-index-workflows-client/README.md` (+0 -0) ➕ `packages/llama-index-workflows-client/package.json` (+10 -0) ➕ `packages/llama-index-workflows-client/pyproject.toml` (+20 -0) ➕ `packages/llama-index-workflows-client/src/llama_agents/client/__init__.py` (+3 -0) 📝 `packages/llama-index-workflows-client/src/llama_agents/client/client.py` (+3 -3) ➕ `packages/llama-index-workflows-client/src/llama_agents/client/protocol/__init__.py` (+84 -0) _...and 50 more files_ </details> ### 📄 Description _No description provided_ --- <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:08 -05:00
yindo closed this issue 2026-02-16 02:17:08 -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#281