organization · inferred from evidence
Oracle
The organization maintaining the ocifs library and OCI Object Storage service.
- Oracle vector store ignores JSON Search Index when vector index exists
The problem was the generated SQL was missing the optimizer hint that makes the database consider both indexes, so the JSON Search Index sat unused whenever a vector index existed. The fix adds the VECTOR_INDEX_TRANSFORM hint to the query,
- OCI Cohere Command Vision fails: CohereChatResponseV2 object has no attribute text
This had two causes, both fixed. First, the Cohere V2 response structure is different: the text lives at .message.content[].text, not .text, so the parser needed updating. Second, vision models require the COHEREV2 API format even when you
- ocifs: setting Content-Type when writing a file to OCI Object Storage
The library was not wiring the content type through on file writes. Fixed in ocifs 1.3.1: the open() call now both guesses the content type from the file extension when you do not pass one, and honors an explicit content_type= parameter. Up