Skip to content

Releases: it-at-m/mucgpt

v1.2.3

30 Jan 11:37
c512c7e
Compare
Choose a tag to compare

Added

  • 🕵️‍♂️ sherlock, assistant for software testing

Changed

  • Brainstorm

    • improved mindmap generation: generates more subnodes
  • Storage

    • improved storage scheme in IndexedDB⚠migrates existing assistants and chat messages. Does not migrate existing summarize/brainstorm/simply history
    • bots now also have a history
  • better logging #166

  • dependency management

    • use uv for dependency management and environments
  • docker images/configuration

    • config via env.vars
  • front end

    • Refactored front end pages to have common components
    • Every page now has a open sidebar where settings are always visible
  • Renamed the title of the simple language example

Fixed

  • Brainstorm
    • mindmaps are now readable in dark mode
  • fixed a bug with mistral models over API
  • fixed a bug with simply that links are not interpreted #229
  • Fixed a bug with copying partial code blocks in chrome/firefox #249

Full Changelog: v1.2.2...v1.2.3

v1.2.2

08 Nov 15:45
Compare
Choose a tag to compare

Added

  • Own assistants #155

    • It is now possible to create custom assistants. This feature allows users to develop specialized assistants for recurring tasks, equipped with a system prompt.
    • Examples of assistants include:
      • English Translator: Translates all inputs into English.
      • Test Generator: Creates helpful test cases based on the entered program code.
      • Proofreader: Corrects entered texts and suggests alternative phrasings.
    • To create an assistant, the user describes the desired functionality in a text field. MUCGPT then generates an appropriate title, description, and system prompt, which can be further customized.
  • French and ukrainian localization in #154

Fixed

  • Backend statistics can be now queried again: #152
  • Various frontend bugs #151

Changed

  • The design of the MUCGPT user interface has been updated to be more clean

Full Changelog: v1.2.1...v1.2.2

v1.2.1

09 Oct 14:17
Compare
Choose a tag to compare

Added

Fixed

  • performance problems in long chats

Changed

Full Changelog: v1.2.0...v1.2.1

v1.2.0

18 Sep 13:05
22c950d
Compare
Choose a tag to compare

Added

Fixed

  • brackets are no longer swallowed when rendering code

Changed

  • switched from Quart backend du Fastapi

v1.1.4

11 Sep 15:53
2b96e14
Compare
Choose a tag to compare

Added

  • Maximum tokens from the config divided into input and output tokens. This means that models with smaller context windows (e.g. Mistral) no longer run into an error.

Fixed

  • Version number is saved correctly again and displayed in the settings.
  • Max_tokens and other parameters are now correctly set for the non-default LLMs

Changed

v1.1.3

29 Aug 07:08
28d613b
Compare
Choose a tag to compare

Added

  • Support for multiple models via configuration on front and backend
  • token counting for Mistral and newer OpenAI Models by using the correct Mistral/Tiktoken Tokenizer

Fixed

  • #41
  • improvements for summarisation logic (#40)
    • using structured output/Json mode -> no need for complex cleanup after the LLM call
  • Removed depreciated LLMChain logic

Changed

Docker instead of Azure dependencies

  • Docker based build based on a json-configuration
    • contains a list of available OpenAI/Azure-OpenAI compatible endpoints
  • Removed all IAC files for azure, as well as all azure dependencies

v1.1.2

31 Jul 15:53
Compare
Choose a tag to compare

Added

chat history

There is now a history of all conversations that have taken place for the chat function, that is stored inside the browsers IndexedDB

  • All chat histories in the "Chat" tab are saved automatically
  • Chats can be deleted, renamed or favoured in the "History" window
  • Favourite chats are always displayed at the top
  • Chats are sorted according to the last time they were edited and are
    grouped into "Today", "Yesterday", "Last 7 days" and "Older"

Fixed

Changed