Add node-llama-cpp provider integration#629
Merged
Merged
Conversation
Expose @workglow/node-llama-cpp through the workglow meta-package under the `workglow/node-llama` and `workglow/node-llama/runtime` subpaths, mirroring the single-target pattern used for tf-mediapipe. - src/node-llama.ts re-exports @workglow/node-llama-cpp/ai - src/node-llama-runtime.ts re-exports @workglow/node-llama-cpp/ai-runtime - package.json: add the two subpath exports and the workspace dependency - tsconfig.json: add the provider project reference Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013kpj2QQrsPAtUQBxL3aEYx
sroussey
added a commit
that referenced
this pull request
Jul 10, 2026
## @workglow/ai ### Features #### providers - add xAI (Grok) AI provider(#622) ## workglow ### Features - add node-llama-cpp provider to workglow meta-package (#629) - add OpenRouter provider for @workglow/ai (#626) #### providers - add xAI (Grok) AI provider(#622) ## @workglow/storage ### Bug Fixes #### storage - genuine CAS for updateWhere on IndexedDb + HttpTabularProxy (#628) ## @workglow/test ### Features - add OpenRouter provider for @workglow/ai (#626) #### providers - add xAI (Grok) AI provider(#622) ### Bug Fixes #### storage - genuine CAS for updateWhere on IndexedDb + HttpTabularProxy (#628) ## @workglow/indexeddb ### Bug Fixes #### storage - genuine CAS for updateWhere on IndexedDb + HttpTabularProxy (#628) ## @workglow/xai ### Features #### providers - add xAI (Grok) AI provider(#622) ## @workglow/openrouter ### Features - add OpenRouter provider for @workglow/ai (#626) ## @workglow/cli ### Features #### providers - add xAI (Grok) AI provider(#622)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds support for the
node-llama-cppprovider to the workglow monorepo, following the established pattern for vendor provider packages.Changes
./node-llamaand./node-llama/runtimeconditional exports inpackage.json, mirroring the pattern used by other AI providers (anthropic, openai, etc.)src/node-llama.tsandsrc/node-llama-runtime.tsthat re-export from@workglow/node-llama-cpp/aiand@workglow/node-llama-cpp/ai-runtimerespectively@workglow/node-llama-cppto the workglow package dependenciesnode-llama-cppprovider path intsconfig.jsonfor proper monorepo resolutionThis follows the vendor provider pattern established in the codebase (e.g., anthropic, openai, google-gemini) where each provider exposes
./aiand./ai-runtimesub-paths through the main workglow meta-package.https://claude.ai/code/session_013kpj2QQrsPAtUQBxL3aEYx