You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a JS-only integration page for @iflow-ai/search-langchain (community-maintained, third-party, currently pre-1.0 / @next) and a single Card entry on the JS tools index.
Modified: src/oss/javascript/integrations/tools/index.mdx — one Card added alphabetically (between Google Routes Tool and JigsawStack Tool).
Not touched: src/docs.json, packages.yml, providers pages, Python docs.
Page covers: install (npm/yarn/pnpm including @next), credentials via IFLOW_API_KEY env var (placeholder only — no real key), security-boundary note, instantiation of the three tool factories (createIFlowWebSearchTool, createIFlowImageSearchTool, createIFlowWebFetchTool) plus the convenience createIFlowSearchTools, direct .invoke() example, and createReactAgent example.
Status update — @iflow-ai/search-langchain@0.1.0 and @iflow-ai/search-core@0.1.0 have shipped to npm latest (verifiable with npm view @iflow-ai/search-langchain dist-tags and npm view @iflow-ai/search-core dist-tags).
The exported factory surface remains unchanged:
createIFlowWebSearchTool
createIFlowImageSearchTool
createIFlowWebFetchTool
createIFlowSearchTools
The tool names are also unchanged:
iflow_web_search
iflow_image_search
iflow_web_fetch
This PR currently uses @next install snippets because it was opened during prerelease. Bare install now resolves to stable 0.1.0, so I’m happy to refresh the branch to simplify the install command to:
This remains a community / third-party integration; no implied LangChain endorsement.
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
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 a JS-only integration page for
@iflow-ai/search-langchain(community-maintained, third-party, currently pre-1.0 /@next) and a single Card entry on the JS tools index.Scope (minimal, 2 files):
src/oss/javascript/integrations/tools/iflow_search.mdxsrc/oss/javascript/integrations/tools/index.mdx— one Card added alphabetically (between Google Routes Tool and JigsawStack Tool).Not touched:
src/docs.json,packages.yml, providers pages, Python docs.Page covers: install (npm/yarn/pnpm including
@next), credentials viaIFLOW_API_KEYenv var (placeholder only — no real key), security-boundary note, instantiation of the three tool factories (createIFlowWebSearchTool,createIFlowImageSearchTool,createIFlowWebFetchTool) plus the conveniencecreateIFlowSearchTools, direct.invoke()example, andcreateReactAgentexample.The package is explicitly framed as community-maintained and not part of LangChain core. Tracking issue: langchain-ai/langchainjs#10931. Source: https://github.com/zhengyanglsun/iflow-search-js.
Checks run locally: markdownlint clean on both files;
git diff --checkclean; secret-scan clean (no real keys, tokens, or tunnel URLs in the diff).