-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(js): Expose light interface for tracing client (#1266)
Allows for interoperability in LangChain when initializing tracer with clients if different LangSmith versions are resolved: ```ts import { Client } from "langsmith"; // `@langchain/core` may have a different internal version of `langsmith` import { LangChainTracer } from "@langchain/core/tracers"; const client = new Client(); const tracer = new LangChainTracer({ client, // Will type error if resolutions are bad }); ```
- Loading branch information
1 parent
3f11b59
commit 6f71cb7
Showing
3 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "langsmith", | ||
"version": "0.2.7", | ||
"version": "0.2.8", | ||
"description": "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.", | ||
"packageManager": "[email protected]", | ||
"files": [ | ||
|
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
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