Skip to content

Commit ecdbf29

Browse files
authored
Merge pull request langchain-ai#9 from langchain-ai/wfh/doc_nit
id to info
2 parents b183741 + af1ad17 commit ecdbf29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/evaluation/capturing-feedback.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ In addition to general production observability, user feedback is a key ingredie
7272

7373
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.
7474

75-
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:
75+
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:
7676

7777
```bash
7878
export LANGCHAIN_TRACING_V2=true

docs/tracing/tracing-faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ try {
266266

267267
### How do I get the run ID from a call?
268268

269-
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:
269+
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:
270270

271271
<CodeTabs
272272
tabs={[

0 commit comments

Comments
 (0)