From 6b47c7361e60e50082d156c5782f2f0963cd9a5d Mon Sep 17 00:00:00 2001 From: Nada Amin Date: Fri, 12 Jul 2024 19:07:42 -0400 Subject: [PATCH] docs: fix code usage to use the ollama variant (#23937) **Description:** the template neo4j-semantic-ollama uses an import from the neo4j-semantic-layer template instead of its own. Co-authored-by: Erick Friis --- templates/neo4j-semantic-ollama/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/neo4j-semantic-ollama/README.md b/templates/neo4j-semantic-ollama/README.md index 674571befe6..bfe52dea243 100644 --- a/templates/neo4j-semantic-ollama/README.md +++ b/templates/neo4j-semantic-ollama/README.md @@ -67,7 +67,7 @@ langchain app add neo4j-semantic-ollama And add the following code to your `server.py` file: ```python -from neo4j_semantic_layer import agent_executor as neo4j_semantic_agent +from neo4j_semantic_ollama import agent_executor as neo4j_semantic_agent add_routes(app, neo4j_semantic_agent, path="/neo4j-semantic-ollama") ```