Sign in

Update vector store file attributes

documented

Update vector store file attributes.

POST /vector_stores/{vector_store_id}/files/{file_id}Vector Storesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.openai.com/v1/vector_stores/{{$vector_store_id}}/files/{{$file_id}}" \
  -X POST \
  -H "Authorization: Bearer {{OPENAI_API_KEY}}" \
  -H "Content-Type: application/json" \
  -d '{"attributes": {"key1": "{{$attr_value1}}", "key2": {{$attr_value2}}, "flag": {{$attr_flag}}}}'