Skip to content

Commit

Permalink
Update ros_index_to_vectorstore.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboCoachian authored Nov 22, 2023
1 parent 282ee0a commit 897d2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roscribe/ros_index_to_vectorstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# Initialize Database
db_name = "ros_index_db_{}_".format(ros_version) + str(date.today()).replace("-", "_")
vectorstore = Chroma(embedding_function=OpenAIEmbeddings(), persist_directory="./../ROS_index_database/" + db_name)
vectorstore = Chroma(embedding_function=OpenAIEmbeddings(), persist_directory="ROS_index_database/" + db_name)
print("A ChromaDB object has been initialized!")

# Load ROS Repositories
Expand Down

0 comments on commit 897d2f7

Please sign in to comment.