v6.10.0 - So much time wasted!
Upgrading from v6.9.x
To upgrade from a prior version without losing your databases, downloaded models, etc., do the following:
- Download the source code for this release.
- Take all files ending in
.py
and copy them, overwriting your pre-existing files. MAKE SURE and keep your currentconfig.yaml
. - Copy any files in the
Assets
folder and replace any ones in your currentAssets
folder. - Do the same for any files in the
CSS
folder. - Activate your virtual environment and run the following command to uninstall any & all dependencies.
pip freeze > requirements_uninstall.txt && pip uninstall -r requirements_uninstall.txt -y && del requirements_uninstall.txt
- run
python setup_windows.py
Added/Removed Chat Models
- Added
Marco-o1 - 7b
- This is a superb model that performs chain-of-thought. It is slower than other models (thinking behind the scenes), but produces extremely accurate results even with long contexts.
- Added
Qwen 2.5 Coder - 3b
- Added
Qwen 2.5 Coder - 14b
- Added
Qwen 2.5 - 32b
- Added
Qwen 2.5 Coder - 32b
- Removed
Internlm2_5 - 1.8b
- Removed
Yi Coder - 9b
- Removed
Internlm2_5 - 7b
- Removed
DeepSeek Coder v2 - 16b
- Eclipsed by the better and faster
Qwen 2.5 Coder - 14b
model.
- Eclipsed by the better and faster
- Removed
Internlm2_5 - 20b
- Eclipsed by
Qwen 2.5 - 14b
and/orQwen 2.5 32b
- Eclipsed by
Added/Removed Vision Models
- Added
THUDM glm4v - 9b
- Added
Molmo-D-0924 - 8b
Scrape Python Library Documentation
- Added multiple new libraries and newer versions of existing libraries to scrape.
- Improved .html formatting of scraped cites to feed the vector database more relevant information.
- Increased the speed and reliability of scraping documentation by using
lxml
withinbeautifulsoup4
and other alternations. - Created
module_scraper.py
to handle scraping logic whilegui_tabs_tools_scrape.py
still provides the GUI.
Ask Jeeves Improvements
- Added more error handling and server connection indicators as well as better subprocess handling.
Other Improvements
- Updated dependencies.
- Refactored
document_processor.py
to accommodate newer dependencies and load .html file faster. - Additional file filters to reduce download amounts when downloading models.
- Added a button to display vision model bar charts.