Skip to content

v6.10.0 - So much time wasted!

Compare
Choose a tag to compare
@BBC-Esq BBC-Esq released this 25 Nov 21:54
· 36 commits to main since this release
594dfb1

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 current config.yaml.
  • Copy any files in the Assets folder and replace any ones in your current Assets 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.
  • Removed Internlm2_5 - 20b
    • Eclipsed by Qwen 2.5 - 14b and/or Qwen 2.5 32b

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 within beautifulsoup4 and other alternations.
  • Created module_scraper.py to handle scraping logic while gui_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.