Files
stampy-chat/api/Pipfile
T
Fraser 844ce744e6 Default to querying from live website if pinecone url not in .env
# 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.
2023-05-23 17:24:04 -04:00

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"