Добавлена интеграция с Qdrant для поиска по векторам
This commit is contained in:
18
LazyBear.MCP/Services/Qdrant/QdrantToolModule.cs
Normal file
18
LazyBear.MCP/Services/Qdrant/QdrantToolModule.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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"
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user