-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarified docs for chat app, fixed error in .env.example
- Loading branch information
1 parent
eb9abe5
commit c99136b
Showing
6 changed files
with
26 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
OPENAI_API_KEY = | ||
|
||
# Weaviate cloud deployment | ||
WEAVIATE_URL = | ||
WEAVIATE_ENDPOINT_URL = | ||
WEAVIATE_API_KEY = |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
# NLP stuff | ||
# NLP stuff for keyword search | ||
rake_nltk==1.0.6 | ||
nltk==3.9.1 | ||
|
||
# Necessary for the API | ||
# API framework | ||
fastapi[standard]==0.115.5 | ||
|
||
# Handles data validation, parsing, error handling, | ||
# conversions, and type hints | ||
# Necessary for the API | ||
# Handles data validation, parsing, error handling, conversions, type hints | ||
pydantic==2.10.1 | ||
|
||
# Necessary for web stuff | ||
# Web server used by FastAPI | ||
uvicorn[standard]==0.32.1 | ||
|
||
# vector database | ||
# Weaviate vector database Python API | ||
weaviate-client==4.7.1 | ||
|
||
# environmental variables such as API keys and endpoint URLs | ||
# For loading environmental variables such as API | ||
# keys and endpoint URLs | ||
python-dotenv==1.0.0 | ||
|
||
# for running queries | ||
# OpenAI Python API for interacting with generative | ||
# and embedding models | ||
openai==1.54.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
|
||
streamlit | ||
|
||
pandas | ||
streamlit==1.40.1 | ||
pandas==2.2.3 |