Skip to content

Commit

Permalink
fix: requirements.txt format and path to db
Browse files Browse the repository at this point in the history
  • Loading branch information
Draichi committed Oct 28, 2024
1 parent 76a3683 commit fcad191
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# "OPENAI_API_KEY not found in environment variables.")

# Initialize database connection
db = SQLDatabase.from_uri("sqlite:///../db/Bahrain_2023_Q.db")
db = SQLDatabase.from_uri("sqlite:///db/Bahrain_2023_Q.db")

# Initialize LLM
# llm = ChatOpenAI(model="gpt-4-0125-preview")
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
langchain = "^0.3.4"
langgraph = "^0.2.39"
langchain-community = "^0.3.3"
langchain-openai = "^0.2.3"
faiss-cpu = "^1.9.0"
gradio = "^5.3.0"
langchain-google-genai = "^2.0.1"
langchain==0.3.4
langgraph==0.2.39
langchain-community==0.3.3
langchain-openai==0.2.3
faiss-cpu==1.9.0
gradio==5.3.0
langchain-google-genai==2.0.1

0 comments on commit fcad191

Please sign in to comment.