| 3193 | truncate_inputs?: boolean; |
| 3194 | } |
| 3195 | interface BGEM3InputQueryAndContexts1 { |
| 3196 | /** |
| 3197 | * A query you wish to perform against the provided contexts. If no query is provided the model with respond with embeddings for contexts |
| 3198 | */ |
| 3199 | query?: string; |
| 3200 | /** |
| 3201 | * List of provided contexts. Note that the index in this array is important, as the response will refer to it. |
| 3202 | */ |
| 3203 | contexts: { |
| 3204 | /** |
| 3205 | * One of the provided context content |
| 3206 | */ |
| 3207 | text?: string; |
| 3208 | }[]; |
| 3209 | /** |
| 3210 | * When provided with too long context should the model error out or truncate the context to fit? |
| 3211 | */ |
| 3212 | truncate_inputs?: boolean; |
| 3213 | } |
| 3214 | interface BGEM3InputEmbedding1 { |
| 3215 | text: string | string[]; |
| 3216 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected