Can't the run_name when running graph #2665
Unanswered
Daniel-963
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
when i def the chatbot using follow code,i cant get the name when run the workflow
async def chatbot1(state: State, config: RunnableConfig):
config["run_name"] = "chatbot1"
return {"messages": [await llm1.ainvoke(state["messages"], config)]}
here i cant get name
async def message_generator(user_input: str):
"""Generate streaming messages from the graph."""
inputs = [HumanMessage(content=user_input)]
but when using follow code,i can
that's why? is it a bug?
Beta Was this translation helpful? Give feedback.
All reactions