QueryTool constructor

QueryTool({
  1. String name = "query",
  2. String description = "Search all entries across all records in multiple queries across a vector database. Your queries should be full text questions. The more specific the better. The user will be shown the most relevant entries to their queries.",
  3. required VectorSpace vectorSpace,
})

Implementation

QueryTool({
  super.name = "query",
  super.description =
      "Search all entries across all records in multiple queries across a vector database. Your queries should be full text questions. The more specific the better. The user will be shown the most relevant entries to their queries.",
  required this.vectorSpace,
});