feat(adapter): add LangChain export and run adapter#27
Open
dahlinomine wants to merge 1 commit intoopen-gitagent:mainfrom
Open
feat(adapter): add LangChain export and run adapter#27dahlinomine wants to merge 1 commit intoopen-gitagent:mainfrom
dahlinomine wants to merge 1 commit intoopen-gitagent:mainfrom
Conversation
Adds `langchain` as a new export format and run adapter. Closes open-gitagent#2. - src/adapters/langchain.ts: exports gitagent definition as a LangChain `create_tool_calling_agent` Python script with `AgentExecutor` - src/runners/langchain.ts: runs the exported script via python3 - Wires langchain into adapters/index.ts, commands/export.ts, commands/run.ts Skills become @tool stubs. Compliance constraints are injected into the system prompt. Model routing: gpt-4o (default), claude-* → ChatAnthropic, gemini-* → ChatGoogleGenerativeAI.
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.
Summary
Adds
langchainas a new export format and run adapter.Closes #2.
Changes
src/adapters/langchain.ts— exports a gitagent directory as a LangChaincreate_tool_calling_agent+AgentExecutorPython scriptsrc/runners/langchain.ts— runs the exported script viapython3@tool-decorated stub functionsChatPromptTemplatesystem messagegpt-4odefault,claude-*→ChatAnthropic,gemini-*→ChatGoogleGenerativeAIlanggraphintoadapters/index.ts,commands/export.ts,commands/run.ts(both adapters share the same wiring PR since they have overlapping index changes)Usage
Generated output example
Testing
npm run buildpassesgitagent export -f langchain -d examples/standardproduces valid Pythongitagent export -f langchain -d examples/fullrenders compliance constraints in system promptChecklist
adapters/index.ts,commands/export.ts,commands/run.ts