Skip to content

QueryGraphRAGStoreRequest

Example Usage

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

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

Fields

FieldTypeRequiredDescriptionExample
storeNamestring✔️N/A
xApiKeyIdstring✔️N/A
xUserIdstring✔️N/A
xExchangeJwtExternalUserIdstring✔️N/A
graphRAGQueryRequestcomponents.GraphRAGQueryRequest✔️N/A{
"limit": 5,
"mode": "graph",
"query": "Who owns the company that won the Northern Bridge Sensors contract?",
"seed_k": 8
}