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
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
storeName | string | ✔️ | N/A | |
xOnBehalfOf | string | ➖ | Optional external end-user identifier forwarded by the API gateway. | |
graphRAGQueryRequest | components.GraphRAGQueryRequest | ✔️ | N/A | { "limit": 5, "mode": "graph", "query": "Who owns the company that won the Northern Bridge Sensors contract?", "seed_k": 8 } |