Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a remote runnable:
remoteChain = RemoteRunnable("http://localhost:8420/chat")
and I am streaming an output:
for chunk in remoteChain.stream({'question': "My question", 'user_id': user_id'}, config={"configurable": {
"conversation_id": "conv_id",
"user_id": "user_id"
}}):
print(chunk)
I would like to get the run id as well from remoteChain. Is that possible?
Beta Was this translation helpful? Give feedback.
All reactions