[PR #335] [MERGED] Fix openapi generation script to use correct module path #337

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

📋 Pull Request Information

Original PR: https://github.com/run-llama/workflows-py/pull/335
Author: @adrianlyjak
Created: 2/5/2026
Status: Merged
Merged: 2/5/2026
Merged by: @adrianlyjak

Base: mainHead: claude/sync-all-extras-G4FWs


📝 Commits (2)

  • 6811fce Fix openapi generation script to use correct module path
  • 6a3aa6c Move OpenAPI generation from workflows package to server package

📊 Changes

4 files changed (+13 additions, -14 deletions)

View changed files

📝 .github/workflows/publish_openapi.yml (+4 -4)
📝 packages/llama-agents-server/pyproject.toml (+7 -0)
📝 packages/llama-index-workflows/pyproject.toml (+0 -8)
📝 uv.lock (+2 -2)

📄 Description

The hatch script server:openapi was invoking python -m workflows.server.server, but workflows.server is just a re-export shim with no server.py submodule. The actual module with the __main__ block lives at llama_agents.server.server.


🔄 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/335 **Author:** [@adrianlyjak](https://github.com/adrianlyjak) **Created:** 2/5/2026 **Status:** ✅ Merged **Merged:** 2/5/2026 **Merged by:** [@adrianlyjak](https://github.com/adrianlyjak) **Base:** `main` ← **Head:** `claude/sync-all-extras-G4FWs` --- ### 📝 Commits (2) - [`6811fce`](https://github.com/run-llama/workflows-py/commit/6811fcef817ef65d221e28f134233a15e14f4a46) Fix openapi generation script to use correct module path - [`6a3aa6c`](https://github.com/run-llama/workflows-py/commit/6a3aa6c3f7c577d866dc9ffc4acb878c37824fb1) Move OpenAPI generation from workflows package to server package ### 📊 Changes **4 files changed** (+13 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/publish_openapi.yml` (+4 -4) 📝 `packages/llama-agents-server/pyproject.toml` (+7 -0) 📝 `packages/llama-index-workflows/pyproject.toml` (+0 -8) 📝 `uv.lock` (+2 -2) </details> ### 📄 Description The hatch script `server:openapi` was invoking `python -m workflows.server.server`, but `workflows.server` is just a re-export shim with no `server.py` submodule. The actual module with the `__main__` block lives at `llama_agents.server.server`. --- <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:16 -05:00
yindo closed this issue 2026-02-16 02:17:16 -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#337