Skip to content

Commit

Permalink
chore: update .gitignore and add Pipfile for package management
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-jakisa committed Feb 23, 2025
1 parent 95d13e2 commit 1d22ca6
Show file tree
Hide file tree
Showing 4 changed files with 2,641 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ venv/
.venv/
.idea/
/__pycache__/
**/__pycache__/
*/__pycache__/
***/__pycache__/*
*.pyc
blogs/
.idea/
19 changes: 19 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
streamlit = "*"
bs4 = "*"
langchain = "*"
langchain-community = "*"
langgraph = "*"
langchain-openai = "*"
duckduckgo-search = "*"
faiss-cpu = "*"

[dev-packages]

[requires]
python_version = "3.13"
Loading

0 comments on commit 1d22ca6

Please sign in to comment.