19 lines
530 B
C#
19 lines
530 B
C#
using LazyBear.MCP.Services.ToolRegistry;
|
|
|
|
namespace LazyBear.MCP.Services.Qdrant;
|
|
|
|
public sealed class QdrantToolModule : IToolModule
|
|
{
|
|
public string ModuleName => "Qdrant";
|
|
public string Description => "Qdrant: база знаний (коллекции, документы, векторный поиск)";
|
|
|
|
public IReadOnlyList<string> ToolNames =>
|
|
[
|
|
"ListCollections",
|
|
"CreateCollection",
|
|
"UpsertKnowledgeDocument",
|
|
"SearchKnowledge",
|
|
"DeleteKnowledgeDocument"
|
|
];
|
|
}
|