[PR PREVIEW - DO NOT MERGE] 🌿 Fern Regeneration -- December 7, 2025#3323
[PR PREVIEW - DO NOT MERGE] 🌿 Fern Regeneration -- December 7, 2025#3323fern-api[bot] wants to merge 2 commits intomainfrom
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| @@ -4,7 +4,6 @@ | |||
| import typing | |||
There was a problem hiding this comment.
Keep workflow imports resolvable after turning client into module
This commit renames vellum/client/__init__.py into the top-level module shown here and deletes the entire src/vellum/client/types tree, so vellum.client is no longer a package. However, the workflow SDK still imports submodules from that package (e.g., src/vellum/workflows/nodes/displayable/bases/inline_prompt_node/node.py lines 36–54 import vellum.client.types.* and vellum.client.core.*). With vellum.client now a plain module, those imports will raise ModuleNotFoundError: 'vellum.client' is not a package as soon as any workflow node is imported or the workflow tests run. Please either keep vellum.client as a package/alias or update the workflow imports to point at the new vellum.types/vellum.core paths.
Useful? React with 👍 / 👎.
This PR regenerates code to match the latest API Definition.