Replies: 2 comments
-
hi @mraguth
What are you trying to achieve? in your example you are invoking multiple prompts in a loop, which will result in only the last prompt being applied
You can inspect outputs of each prompt invocation separately (outside of
Check out the conceptual guide here: https://python.langchain.com/docs/concepts/#tools and https://python.langchain.com/docs/concepts/#prompt-templates Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
@vbarda My challenge is that I am using multiple prompts in my LangChain script and I want to transition all of them to LangGraph. Should I combine all my prompts into one? Any advice? |
Beta Was this translation helpful? Give feedback.
-
I have a few of questions here and please help if you can.
Questions:
I am referring to this web link for adding multiple tools. My sample example is provided below. Please advise.
https://python.langchain.com/docs/how_to/migrate_agent/
Example code I got from the above reference:
My code sample is below:
Beta Was this translation helpful? Give feedback.
All reactions