Add LangChain & LlamaIndex adapters, runnable examples, and CI smoke tests#25
Merged
HiveForensicsAI merged 1 commit intocodex/restructure-knolo-repository-for-monorepofrom Feb 21, 2026
Conversation
dd546a2
into
codex/restructure-knolo-repository-for-monorepo
0 of 2 checks passed
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.
Motivation
@knolo/corewithout introducing new LLM logic or speculative APIs.Description
@knolo/langchainwithKnoLoRetrieverthat loads a pack viamountPack(or accepts apack) and returns LangChain-styleDocumentobjects populated withscore,source,namespace, andidmetadata viaqueryfrom@knolo/core.@knolo/llamaindexwithKnoLoRetrieverexposingretrieve(query)that returns NodeWithScore-like objects{ node: { text, metadata }, score }usingmountPack+query.packages/langchain/testandpackages/llamaindex/testto validate returned structures and metadata population, and extendedcreate-knolo-apptests to run a generated-projectknolo buildto assert indexing.examples/(langchain-basic,llamaindex-basic,node-cli-rag,nextjs-rag-chat), updated the rootREADME.mdwith quickstarts and adapter snippets, and wired a CI workflow (.github/workflows/ci.yml) to runnpm ci,npm run build, andnpm teston PRs and pushes.Testing
npm install,npm run build, andnpm test, and all automated tests passed successfully.npm testfor@knolo/langchainand@knolo/llamaindexand they return the expected document/node shapes and metadata.examples/langchain-basic(npm install && npm run start),examples/llamaindex-basic(npm install && npm run start),examples/node-cli-rag(npm install && npm run build-pack && npm run query), andexamples/nextjs-rag-chat(npm install && npm run start), and each completed successfully in this environment.Codex Task