| 268 | } |
| 269 | |
| 270 | type AssistantToolResourcesFileSearch struct { |
| 271 | // The ID of the |
| 272 | // [vector store](https://platform.openai.com/docs/api-reference/vector-stores/object) |
| 273 | // attached to this assistant. There can be a maximum of 1 vector store attached to |
| 274 | // the assistant. |
| 275 | VectorStoreIDs []string `json:"vector_store_ids"` |
| 276 | // JSON contains metadata for fields, check presence with [respjson.Field.Valid]. |
| 277 | JSON struct { |
| 278 | VectorStoreIDs respjson.Field |
| 279 | ExtraFields map[string]respjson.Field |
| 280 | raw string |
| 281 | } `json:"-"` |
| 282 | } |
| 283 | |
| 284 | // Returns the unmodified JSON received from the API |
| 285 | func (r AssistantToolResourcesFileSearch) RawJSON() string { return r.JSON.raw } |
nothing calls this directly
no outgoing calls
no test coverage detected