Skip to content

Commit

Permalink
fix: Update value assignment in test_vector_store_rag.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielluiz committed Aug 15, 2024
1 parent 2dd9fd7 commit 5e98c67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def ingestion_graph():
# Ingestion Graph
file_component = FileComponent(_id="file-123")
file_component.set(path="test.txt")
file_component.set_on_output("data", Data(text="This is a test file."))
file_component.set_on_output("data", value=Data(text="This is a test file."))
text_splitter = SplitTextComponent(_id="text-splitter-123")
text_splitter.set(data_inputs=file_component.load_file)
openai_embeddings = OpenAIEmbeddingsComponent(_id="openai-embeddings-123")
Expand Down

0 comments on commit 5e98c67

Please sign in to comment.