From af1ad178f6d715562ecc7cb0ff6a3934f4deb1db Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Tue, 15 Aug 2023 17:08:04 -0700 Subject: [PATCH] id to info --- docs/evaluation/capturing-feedback.mdx | 2 +- docs/tracing/tracing-faq.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/evaluation/capturing-feedback.mdx b/docs/evaluation/capturing-feedback.mdx index 3e4ca55cc4e88d..aa434f51d6e7be 100644 --- a/docs/evaluation/capturing-feedback.mdx +++ b/docs/evaluation/capturing-feedback.mdx @@ -72,7 +72,7 @@ In addition to general production observability, user feedback is a key ingredie Assuming you've already set up tracing in the [LangSmith quick start](/#quick-start), you can add user feedback to a run by returning the run ID and and including that in the `create_feedback` call. -To return the run ID for a given call, look for the `__run` key of the LangChain component's response dictionary (or typescript object). In python, you will have to specify `include_run_id=True` when calling your chain or LLM. Below is an example: +To return the run ID for a given call, look for the `__run` key of the LangChain component's response dictionary (or typescript object). In python, you will have to specify `include_run_info=True` when calling your chain or LLM. Below is an example: ```bash export LANGCHAIN_TRACING_V2=true diff --git a/docs/tracing/tracing-faq.mdx b/docs/tracing/tracing-faq.mdx index ec6e8af4f99e05..43fef6e039a87d 100644 --- a/docs/tracing/tracing-faq.mdx +++ b/docs/tracing/tracing-faq.mdx @@ -260,7 +260,7 @@ try { ### How do I get the run ID from a call? -The run ID is returned in the call response under the `__run` key. In python, it is not returned by default. There you will have to pass the `include_run_id=True` parameter to the call function. Example: +The run ID is returned in the call response under the `__run` key. In python, it is not returned by default. There you will have to pass the `include_run_info=True` parameter to the call function. Example: