Question: RemoteRunnable and tools - what am I missing? #559
Unanswered
itamarhaber
asked this question in
Q&A
Replies: 1 comment
-
The default agent executor in langchain does not allow doing unfortunately -- it hard coded the assumption that tool execution happens in the same process. I'd look into writing a custom agent executor using langgraph: https://python.langchain.com/docs/langgraph Similar to question: #334 |
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
-
Hi everyone,
I have a question that either makes sense or doesn't - would appreciate any guidance.
Context: I want to implement an agent that can use a tool. The agent, alongside the different API keys, should be hosted and served with langserve. The tool, on the other hand, needs to be executed by the agent's caller.
How would one go about that?
Beta Was this translation helpful? Give feedback.
All reactions