| 22 | } |
| 23 | |
| 24 | interface KnowledgeBaseMock { |
| 25 | uuid: string; |
| 26 | name: string; |
| 27 | description: string; |
| 28 | emoji: string; |
| 29 | knowledge_engine_plugin_id: string; |
| 30 | creation_settings: JsonRecord; |
| 31 | retrieval_settings: JsonRecord; |
| 32 | knowledge_engine: { |
| 33 | plugin_id: string; |
| 34 | name: { |
| 35 | en_US: string; |
| 36 | zh_Hans: string; |
| 37 | }; |
| 38 | capabilities: string[]; |
| 39 | }; |
| 40 | updated_at: string; |
| 41 | } |
| 42 | |
| 43 | interface MCPServerMock { |
| 44 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected