Skip to content

Commit

Permalink
fix neo4j docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasonjo committed Mar 11, 2024
1 parent 0c1d1b1 commit a5bc0c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/retrieval_model_clients/Neo4jRM.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ retriever_model = Neo4jRM(

results = retriever_model("Explore the significance of quantum computing", k=3)

for passage in results.passages:
print("Document:", result, "\n")
for passage in results:
print("Document:", passage, "\n")
```

0 comments on commit a5bc0c9

Please sign in to comment.