File size: 268 Bytes
86b351a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from agent.tools import available_tools
from agent.llm import create_llm
from langgraph.graph import MessagesState
class CustomState(MessagesState):
    """Расширенное состояние графа."""



llm = create_llm().bind_tools(available_tools)