mini change
Browse files
components/generators/daily_feed.py
CHANGED
@@ -38,7 +38,7 @@ def load_all_documents_grouped_by_topic() -> Dict[str, List[str]]:
|
|
38 |
vector_store = get_upstash_vector_store()
|
39 |
print("💡 Successfully retrieved Upstash vector store.")
|
40 |
|
41 |
-
for topic, key in zip(
|
42 |
try:
|
43 |
# Upstash VectorStore expects the filter value to match the exact string
|
44 |
# of the topic as it was indexed. Make sure your 'topic' metadata
|
|
|
38 |
vector_store = get_upstash_vector_store()
|
39 |
print("💡 Successfully retrieved Upstash vector store.")
|
40 |
|
41 |
+
for topic, key in zip(TOPIC_KEYS):
|
42 |
try:
|
43 |
# Upstash VectorStore expects the filter value to match the exact string
|
44 |
# of the topic as it was indexed. Make sure your 'topic' metadata
|