(use: bool)
| 38 | |
| 39 | |
| 40 | def _make_agent(use: bool) -> ChatAgent: |
| 41 | agent = ChatAgent(ChatAgentConfig(llm=None)) |
| 42 | agent.enable_message(SecretTool, use=use, handle=True) |
| 43 | return agent |
| 44 | |
| 45 | |
| 46 | def _user_doc(content: str) -> ChatDocument: |
no test coverage detected
searching dependent graphs…