Skip to content

QueryGraphRAGStoreRequest

Example Usage

typescript
import { QueryGraphRAGStoreRequest } from "@meetkai/mka1/models/operations";

let value: QueryGraphRAGStoreRequest = {
  storeName: "<value>",
  graphRAGQueryRequest: {
    query:
      "Who owns the company that won the Northern Bridge Sensors contract?",
  },
};

Fields

FieldTypeRequiredDescriptionExample
storeNamestring✔️N/A
xOnBehalfOfstringOptional external end-user identifier forwarded by the API gateway.
graphRAGQueryRequestcomponents.GraphRAGQueryRequest✔️N/A{
"limit": 5,
"mode": "graph",
"query": "Who owns the company that won the Northern Bridge Sensors contract?",
"seed_k": 8
}