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
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
storeName | string | ✔️ | N/A | |
xApiKeyId | string | ✔️ | N/A | |
xUserId | string | ✔️ | N/A | |
xExchangeJwtExternalUserId | string | ✔️ | N/A | |
graphRAGQueryRequest | components.GraphRAGQueryRequest | ✔️ | N/A | { "limit": 5, "mode": "graph", "query": "Who owns the company that won the Northern Bridge Sensors contract?", "seed_k": 8 } |