From d006f22b4fafefd4c051e903beeee2e6f02e4905 Mon Sep 17 00:00:00 2001 From: jacoblee93 Date: Mon, 19 May 2025 10:08:52 -0700 Subject: [PATCH] Fix typo --- docs/observability/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/observability/index.mdx b/docs/observability/index.mdx index 4038701f0..490338227 100644 --- a/docs/observability/index.mdx +++ b/docs/observability/index.mdx @@ -135,7 +135,7 @@ it has an LLM call! ## 5. Trace OpenAI calls -The first thing you might want to trace is all your OpenAI calls. LangSmith makes this easy with the [`wrap_openai`](https://docs.smith.langchain.com/reference/python/wrappers/langsmith.wrappers._openai.wrap_openai_) (Python) or [`wrapOpenAI`](https://docs.smith.langchain.com/reference/js/functions/wrappers_openai.wrapOpenAI) (TypeScript) wrappers. +The first thing you might want to trace is all your OpenAI calls. LangSmith makes this easy with the [`wrap_openai`](https://docs.smith.langchain.com/reference/python/wrappers/langsmith.wrappers._openai.wrap_openai) (Python) or [`wrapOpenAI`](https://docs.smith.langchain.com/reference/js/functions/wrappers_openai.wrapOpenAI) (TypeScript) wrappers. All you have to do is modify your code to use the wrapped client instead of using the `OpenAI` client directly.