# Oracle AI Database Memory Provider Requirements

# Oracle Database Driver (official)
# Supports Oracle Database 23ai and 26ai with VECTOR datatype
oracledb>=2.0.0

# Note: This is the modern replacement for cx_Oracle
# It supports both "thick" and "thin" modes:
# - Thin mode: Pure Python, no Oracle Client required (default)
# - Thick mode: Uses Oracle Client libraries (optional, for advanced features)

# Installation:
#   pip install oracledb

# For thick mode (optional), you also need Oracle Instant Client:
#   https://www.oracle.com/database/technologies/instant-client.html
