(state: MessagesState)
| 16 | |
| 17 | |
| 18 | def call_model(state: MessagesState): |
| 19 | response = model.invoke(state["messages"]) |
| 20 | return {"messages": response} |
| 21 | |
| 22 | |
| 23 | workflow.add_edge(START, "model") |
nothing calls this directly
no outgoing calls
no test coverage detected