-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: dd basic LLM, chain, agent support #1
Merged
Merged
Conversation
This file contains 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
jacoblee93
referenced
this pull request
in jacoblee93/langchainjs
May 2, 2023
feat: add MyScale as vectorStore provider
jacoblee93
referenced
this pull request
in jacoblee93/langchainjs
May 3, 2023
jacoblee93
referenced
this pull request
in jacoblee93/langchainjs
May 10, 2023
* Added RedisMemory with tests and docs * fixed Redis test file name * TODOs for quick refactor * updated memory to accept a client * Added TODOS * ongoing testing * Updated tests * Updated tests for memory return option * finalized tests + updated docs * Adding docs * Readded init and cleaned up func * fixed test typing * redo yarn lock * remove yarn.lock * updated yarn lock and namespaced redis * fix merge conflict
nfcampos
pushed a commit
that referenced
this pull request
May 11, 2023
* Merge post upstream sync (#1) * Added RedisMemory with tests and docs * fixed Redis test file name * TODOs for quick refactor * updated memory to accept a client * Added TODOS * ongoing testing * Updated tests * Updated tests for memory return option * finalized tests + updated docs * Adding docs * Readded init and cleaned up func * fixed test typing * redo yarn lock * remove yarn.lock * updated yarn lock and namespaced redis * fix merge conflict * updated BaseChatMemoryInput * Updated with lint fixes * Fixed docs to match memory instantiation * yarn format docs * Merging fixes to address ForkPR comments (#2) * updating for pr * Removed redis_memory in favor of chat memory * Fixed tests and updated docs * Bump docs * lint results * fixes from lint and format --------- Co-authored-by: Chris Toomey <ctoomey@fb.com> * Update RedisChatMessageHistory class to initialize a client internally * Update Redis chat message history docs to reflect the fact that Redis is a peer dependency, allow direct passing of Redis client * Patch typing issues with passing node-redis client directly into a RedisChatMessageHistory instance --------- Co-authored-by: Chris Toomey <ctoomey@fb.com> Co-authored-by: Jacob Lee <jacoblee93@gmail.com>
This was referenced Jun 3, 2023
nfcampos
added a commit
that referenced
this pull request
Jun 27, 2023
…odelStart always in the same order as the prompts passed in What was happening was that the runManager was only added to the managers array after the callback handlers finished executing, so eg if the callback handlers for the second run finished first the runManager for prompt #2 would actually be in position #1 of the returned array.
agola11
pushed a commit
that referenced
this pull request
Jun 27, 2023
…odelStart always in the same order as the prompts passed in (#1779) What was happening was that the runManager was only added to the managers array after the callback handlers finished executing, so eg if the callback handlers for the second run finished first the runManager for prompt #2 would actually be in position #1 of the returned array.
jacoblee93
referenced
this pull request
in jacoblee93/langchainjs
Aug 14, 2023
A contribution from Prompt Security * Kept it as close to the Python implementation as possible * Followed the guidelines from https://github.com/hwchase17/langchainjs/blob/main/CONTRIBUTING.md and https://github.com/hwchase17/langchainjs/blob/main/.github/contributing/INTEGRATIONS.md * Supplied with unit test coverage * Added documentation
jacoblee93
added a commit
that referenced
this pull request
Aug 15, 2023
* Add Amazon Bedrock LLM endpoint integration (#1) A contribution from Prompt Security * Kept it as close to the Python implementation as possible * Followed the guidelines from https://github.com/hwchase17/langchainjs/blob/main/CONTRIBUTING.md and https://github.com/hwchase17/langchainjs/blob/main/.github/contributing/INTEGRATIONS.md * Supplied with unit test coverage * Added documentation * Fix bedrock documentation .mdx * Fix Bedrock mdx documentation to show embedded example * Fix Bedrock mdx documentation to show embedded example * Rename LLMInputOutputAdapter to BedrockLLMInputOutputAdapter as requested in PR review * Fixed @jacoblee93 suggestions from PR review * Added ability to specify credentials override via Bedrock class constructor. * Removed all dependency on `aws-sigv4-fetch` library and re-implemented the functionality using direct AWS api calls, directly within the `Bedrock._call()` function. * Rewrote unit-tests to mock fetch() instead of the (now missing `aws-sigv4-fetch` library). * Fixed documentation for Bedrock, hopefully better now. * Commit changes to yarn.lock after 'yarn install' in an attempt to fix build error 'YN0028: │ The lockfile would have been modified by this install, which is explicitly forbidden.' * Move hard deps to peer and optional deps, update docs --------- Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
jacoblee93
pushed a commit
that referenced
this pull request
Feb 12, 2024
jacoblee93
added a commit
that referenced
this pull request
Mar 15, 2024
* Couchbase vector store (#1) * added couchbase document loader * fixed loader to use stringify * add doc file * updated tests * update types as per new requirement * update comments for typedoc * fix formatting issues and remove print in tests * add support for couchbase vector search using sdk * improved the params of couchbase * bump couchbase sdk version * remove rest implementation * add tsdoc * use initialize to create instance of class * improved tsdocs * add tests * add similarity search in documentation * add hybrid search in documentation and tests * remove unwanted files * fix formatting * make docs better * bump couchbase version * Prefix env vars --------- Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
jacoblee93
added a commit
that referenced
this pull request
Mar 18, 2024
* Add mistral as supported provider for AWS Bedrock * Updated missing mistral mapping (#1) * Fix typo, format --------- Co-authored-by: Enric Soler Rastrollo <enric.soler@sage.com> Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
jacoblee93
added a commit
that referenced
this pull request
May 31, 2024
* Init * fix(type errors) * feat(deepinfra embeddings) * fix(default model) * fix(deepinfra): axios is removed * ref(deepinfra): remove redundant cast * format(deepinfra) * doc(deepinfra) * doc(deepinfra) * Update deepinfra.mdx * Format --------- Co-authored-by: Jacob Lee <jacoblee93@gmail.com>
sinedied
referenced
this pull request
in sinedied/langchainjs
Jun 10, 2024
* refactor: use azure identity refresh token * chore: formatting * refactor: lint issues * refactor: uniformize user agent prefix * feat: add default fallback to env variable * fix: incorrect template string * chore: add lc serialization * fix: token scope * docs: add .env.example * test: fix unit tests * test: update integration tests * refactor: rename integration tests
jacoblee93
added a commit
that referenced
this pull request
Jun 21, 2024
* Add Azure Container Apps sessions REPL * Rename package * Update to API version 2024-02-02-preview * Update to JSON output * Add user agent * Bump version to 0.1.0 * Update (#1) * refactor: use azure identity refresh token * chore: formatting * refactor: lint issues * refactor: uniformize user agent prefix * feat: add default fallback to env variable * fix: incorrect template string * chore: add lc serialization * fix: token scope * docs: add .env.example * test: fix unit tests * test: update integration tests * refactor: rename integration tests * docs: add azure dynamic sessions documentation * Fix build and make it CJS compatible * Update error message * Add sessions to platform docs * Formatting * Add env var * Add package to examples * Fix agent example * Add readme * Fix bad merge * Add missing package * Fix formatting * Fix langchain/core dependency * Regenerate lockfile * Format, update example * refactor: fix comments * Remove unneeded import --------- Co-authored-by: Yohan Lasorsa <noda@free.fr> Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
jacoblee93
pushed a commit
that referenced
this pull request
Jul 2, 2024
…ation feat: add mixedbread ai integration
This was referenced Jul 4, 2024
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.
No description provided.