Skip to content

Commit

Permalink
fix oracledb/base.py errors...
Browse files Browse the repository at this point in the history
  • Loading branch information
skmishraoracle committed Sep 30, 2024
1 parent e675c98 commit 5164d64
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,9 @@ class OraLlamaVS(BasePydanticVectorStore):
print ("Database version:", connection.version)
"""

AMPLIFY_RATIO_LE5 = 100
AMPLIFY_RATIO_GT5 = 20
AMPLIFY_RATIO_GT50 = 10
AMPLIFY_RATIO_LE5: ClassVar[int] = 100
AMPLIFY_RATIO_GT5: ClassVar[int] = 20
AMPLIFY_RATIO_GT50: ClassVar[int] = 10
metadata_column: str = "metadata"
stores_text: bool = True
_client: Connection = PrivateAttr()
Expand Down

0 comments on commit 5164d64

Please sign in to comment.