mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
9 lines
228 B
Plaintext
9 lines
228 B
Plaintext
```python
|
|
config = {"configurable": {"thread_id": str(uuid7())}}
|
|
|
|
stream = main.stream_events({"x": 5}, config=config, version="v3")
|
|
for mode, chunk in stream.interleave("values"):
|
|
print(f"{mode}: {chunk}")
|
|
# values: 10
|
|
```
|