-
Notifications
You must be signed in to change notification settings - Fork 863
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start statefullness * cr * cr * cr * Fix * with_types * cr * Fix uuids * expose session_id * cr * cr * Add thread and assistant storage endpoints * Add deps * Add message list to output value of list_threads * Return created objects * Frontend: store bots in backend * Update api * Finish frontend * Finish frontend * x * x * x * x * x * x * x * x * x * x * x * x * secrets * Update deps * Fix gpt4 * fe: sort chats and configs * Lint * Lint * Comment * Storage helper funcs * Fix chat order * Add loading state for thread history * Add more loading states * Add research preview banner * Add scoping on user_id * Lint * Fix chat history * Finish file upload api and frontend * Clear files when switcing configs * Make assistants shareable * Some work for feedback buttons * x * x * x * x * x * x * x * x * x * x * x * x * x * x * x * Add redis service to CI (#24) Add redis service to CI (still not used by tests) * Set up tests with redis (#26) - Add testing with redis - Fix bug in ingest runnable - Add RunnableBindingBase to this repo until it's merged and released via langchain * x (#27) * x * cr * cr * cr * cr * Make tests work * Format, lint * Add new env varaibles to make file * Comment out code that's not been released on langchain * Fix missing deps * Display bot name * Fix stream state not resetting when switching threads * Display error message * Display file errors, accummulate files * Fix bottom padding, move public link button to top * Add icon to view config for bot used in current chat * Add tool markdown descriptions * Add feedback buttons * Add tests for endpoints involving storage on server (#32) Add tests for endpoints involving storage * x * x (#34) * Add some validation to endpoints (#35) Add a bit more validation to endpoints * Use models with longer context windows * Update gcp env file * Remove dupe * Use disabled var * Disable autofocus on new bot name * Add libmagic * Lint * Better public bot share link * Add feature public bots * Localize access to REDIS_URL (#36) * Localize a bit access to REDIS_URL * cr --------- Co-authored-by: Nuno Campos <[email protected]> Co-authored-by: Eugene Yurtsev <[email protected]>
- Loading branch information
1 parent
40a3099
commit fdfda6f
Showing
67 changed files
with
9,073 additions
and
607 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
OPENAI_API_KEY=placeholder | ||
ANTHROPIC_API_KEY=placeholder |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
FROM python:3.11-slim | ||
FROM python:3.11 | ||
|
||
RUN apt-get install -y libmagic1 | ||
|
||
WORKDIR /backend | ||
|
||
|
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
__pycache__/ | ||
.envrc | ||
.env | ||
*.swp |
Oops, something went wrong.