Slide 23
Slide 23 text
llm.bind_tools
1. llm.bind_tools(tools, tool_choice, **kwargs)
a. Runnableを返す
2. toolを追加
3. BaseChatOpenAI.bind_tools(tools, tool_choice)
a.
4. BaseChatModel.bind(**kwargs)
a. Useful when a runnable in a chain requires an argument that
is not in the output of the previous runnable or included in
the user input.
b. kwargsにはtool
5. Runnable.bind() -> Runnable
6.