AddTextsRequest
Request to add texts to a store.
Example Usage
typescript
import { AddTextsRequest } from "@meetkai/mka1/models/components";
let value: AddTextsRequest = {
texts: [
"Machine learning is a subset of artificial intelligence",
"Python is a popular programming language",
"Deep learning uses neural networks",
],
group: "tech_articles",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
texts | string[] | ✔️ | List of text strings to add |
group | string | ✔️ | Group identifier for these texts |