langsmith
Version:
Client library to connect to the LangSmith Observability and Evaluation Platform.
13 lines (12 loc) • 934 B
JavaScript
export { Client, } from "./client.js";
export { RunTree } from "./run_trees.js";
export { overrideFetchImplementation } from "./singletons/fetch.js";
export { getDefaultProjectName } from "./utils/project.js";
export { uuid7, uuid7FromTime } from "./uuid.js";
export { isTracingEnabled } from "./utils/guard.js";
export { Cache, PromptCache, configureGlobalPromptCache, promptCacheSingleton, } from "./utils/prompt_cache/index.js";
export { LangsmithError, APIError, APIUserAbortError, APIConnectionError, APIConnectionTimeoutError, BadRequestError, AuthenticationError, PermissionDeniedError, NotFoundError, ConflictError, UnprocessableEntityError, RateLimitError, InternalServerError, } from "./_openapi_client/core/error.js";
// Update using pnpm bump-version
export const __version__ = "0.8.1";
// Metadata key to hide a traced run from LangSmith's Messages View.
export const LS_MESSAGE_VIEW_EXCLUDE = "ls_message_view_exclude";