mirror of
https://github.com/wassname/stampy-chat.git
synced 2026-09-20 13:20:52 +08:00
# Default to querying embeddings from live website if pinecone url not # present in .env # # This helps people getting started developing or messing around with the # site, since setting up a vector DB with the embeddings is by far the # hardest part for those not already on the team.
29 lines
493 B
TOML
29 lines
493 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
# ---- <flask stuff> ----
|
|
flask = "==1.1.2"
|
|
gunicorn = "==20.0.4"
|
|
jinja2 = "==2.11.3"
|
|
markupsafe = "==1.1.1"
|
|
itsdangerous = "==1.1.0"
|
|
werkzeug = "==2.0.3"
|
|
flask-cors = "*"
|
|
# ---- </flask stuff> ----
|
|
openai = "==0.27.2"
|
|
numpy = "==1.24.2"
|
|
tenacity = "==8.2.2 "
|
|
tiktoken = "*"
|
|
pinecone-client = "*"
|
|
python-dotenv = "*"
|
|
discord-webhook = "*"
|
|
requests = "*"
|
|
|
|
[dev-packages]
|
|
|
|
[requires]
|
|
python_version = "3.11"
|