Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
rlancemartin committed Dec 12, 2023
1 parent 1e9bec7 commit f907e16
Show file tree
Hide file tree
Showing 5 changed files with 222 additions and 613 deletions.
4 changes: 2 additions & 2 deletions templates/rag-chroma-multi-modal-multi-vector/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ def create_multi_vector_retriever(vectorstore, image_summaries, images):
"""

# Initialize the storage layer for images
UPSTASH_URL = "xxx"
UPSTASH_TOKEN = "xxx"
UPSTASH_URL = "https://usw1-bright-beagle-34178.upstash.io"
UPSTASH_TOKEN = "AYWCACQgNzk3OTJjZTItMGIxNy00MTEzLWIyZTAtZWI0ZmI1ZGY0NjFhNGRhMGZjNDE4YjgxNGE4MTkzOWYxMzllM2MzZThlOGY="

Check failure on line 140 in templates/rag-chroma-multi-modal-multi-vector/ingest.py

View workflow job for this annotation

GitHub Actions / lint / build (3.11)

Ruff (E501)

templates/rag-chroma-multi-modal-multi-vector/ingest.py:140:89: E501 Line too long (122 > 88)

Check failure on line 140 in templates/rag-chroma-multi-modal-multi-vector/ingest.py

View workflow job for this annotation

GitHub Actions / lint / build (3.11)

Ruff (E501)

rag-chroma-multi-modal-multi-vector/ingest.py:140:89: E501 Line too long (122 > 88)
store = UpstashRedisByteStore(url=UPSTASH_URL, token=UPSTASH_TOKEN)
id_key = "doc_id"

Expand Down
Loading

0 comments on commit f907e16

Please sign in to comment.