-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features: * Save sessions to Firestore API: * Add GET /session/list endpoint * Add GET /message endpoint * Add POST /tool/execute endpoint: for manual tool execution using natural language prompts. * Add /version endpoint Other: * Improved logging: using Queue to queue log messages and send them in a separate thread. * Add back previously removed tools: print_all_files_in_path.py, summarize_all_code_in_path.py * For SummarizeCode: Add output truncation for GPT-3 (16k tokens context window, we pass max 8k for better results) based on tokens * Update AutoGen to latest version * Update Python deps * Add tests (total coverage now is 84.74% (+2.90%))
- Loading branch information
Showing
71 changed files
with
2,587 additions
and
758 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 |
---|---|---|
|
@@ -165,6 +165,8 @@ settings.json | |
|
||
.env | ||
|
||
*.log.jsonl | ||
|
||
# UI folder | ||
nalgonda/ui/* | ||
nalgonda/data/agency_data/* |
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
Oops, something went wrong.