Skip to content

Commit 15363f5

Browse files
authored
Merge pull request #44 from it-at-m/version_update
Update to Version 1.1.2
2 parents 22da1dd + 92b54cd commit 15363f5

File tree

7 files changed

+35
-12
lines changed

7 files changed

+35
-12
lines changed

app/backend/ressources/base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.1.1"
2+
"version": "1.1.2"
33
}

app/frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mucgpt",
33
"private": true,
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"type": "module",
66
"engines": {
77
"node": ">=16.0.0"

app/frontend/src/assets/History.png

78 KB
Loading

app/frontend/src/assets/Mindmaps.mp4

-1.29 MB
Binary file not shown.

app/frontend/src/pages/version/Version.tsx

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import {
77
Button,
88
Tooltip,
99
} from "@fluentui/react-components";
10-
import mindmaps_video from "../../assets/Mindmaps.mp4";
1110
import vorgeschlageneAntworten from "../../assets/vorgeschlagene_antworten.png";
1211
import zurückziehen from "../../assets/zurückziehen.png";
12+
import history from "../../assets/History.png"
1313
import { useTranslation } from "react-i18next";
1414
import { Dismiss24Regular } from "@fluentui/react-icons";
1515
import { useNavigate } from "react-router-dom";
@@ -32,7 +32,32 @@ const Version = () => {
3232

3333
<div className={styles.versionRoot}>
3434
<h1 className={styles.header}>{t('version.header')}</h1>
35-
<Accordion multiple collapsible navigation="linear" defaultOpenItems="5">
35+
<Accordion multiple collapsible navigation="linear" defaultOpenItems="6">
36+
<AccordionItem value="6">
37+
<AccordionHeader>[1.1.2] 31.07.2024</AccordionHeader>
38+
<AccordionPanel >
39+
<div className={styles.panel}>
40+
<h3>{t('version.added')}</h3>
41+
<ul>
42+
<li>Für die Chat-Funktion gibt es nun eine Historie aller durchgeführten konversationen
43+
<p>
44+
<img width="70%" src={history}>
45+
</img>
46+
</p>
47+
<ul>
48+
<li>Alle Chat-Verläufe in dem Tab "Chat" werden automatisch gespeichert</li>
49+
<li>Chats können im "Historie"-Fenster gelöscht, umbenannt oder favourisiert werden</li>
50+
<li>Favourisierte Chats werden immer ganz oben angezeigt</li>
51+
<li>Die Chats werden nach dem letzte Bearbeitungszeitpunkt sortiert und werden gruppiert in "Heute", "Gestern", "Letzte 7 Tage" und "Älter"</li>
52+
</ul>
53+
54+
</li>
55+
</ul>
56+
<h3>{t('version.fixed')}</h3>
57+
<h3>{t('version.changed')}</h3>
58+
</div>
59+
</AccordionPanel>
60+
</AccordionItem >
3661
<AccordionItem value="5">
3762
<AccordionHeader>[1.1.1] 04.06.2024</AccordionHeader>
3863
<AccordionPanel >
@@ -80,11 +105,7 @@ const Version = () => {
80105
</p>
81106
</li>
82107
<li><b>Mermaid Diagramme</b> können im Chat angezeigt und heruntergeladen werden</li>
83-
<li>Es gibt Arielle, die Diagramm-Assistentin. Diese begleitet den Nutzer beim Erstellen von Mermaid-Diagrammen. <p>
84-
<video width="80%" controls>
85-
<source src={mindmaps_video} type="video/mp4" />
86-
</video>
87-
</p></li>
108+
<li>Es gibt Arielle, die Diagramm-Assistentin. Diese begleitet den Nutzer beim Erstellen von Mermaid-Diagrammen.</li>
88109
<li>Mehr Platz für die Eingabe des Systemprompts</li>
89110
<li>Warnmeldung wird angezeigt, falls Systemprompt gesetzt ist</li>
90111
<li>Bessere Beschreibungen für die Temperatur Einstellung</li>

docs/FEATURES.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ Currently MUCGPT is divided into the areas [Chat](#chat) to chat with the underl
77
![Chat](/docs/chatscreen.png)
88
The chat feature of MUCGPT is a typical chat room where you can text with the LLM to get information about almost anything.
99
MUCGPT is able to generate responses that closely resemble those of a human because of the large pre-trained language model it uses. It has a number of features and capabilities that enable it to perform natural language processing, multi-turn conversations, personalisation, sentiment analysis, knowledge retrieval and task completion. These capabilities allow MUCGPT to understand and respond to user queries in a way that is tailored to their needs, making it a powerful tool for any use case where human-like interaction is desired.
10-
In addition, MUCGPT allows users to configure a system prompt that is added as a prefix to any message sent by the user. The temperature of the generated response can also be adjusted, controlling the randomness or creativity of the model's output.
10+
In addition, MUCGPT allows users to configure a system prompt that is added as a prefix to any message sent by the user. The temperature of the generated response can also be adjusted, controlling the randomness or creativity of the model's output.
11+
The chat feature includes a chat history that allows users to view their previous conversations and pick up where they left off. Additionally, users can mark important chats as favorites for quicker access. All chat history is saved locally on the user's browser using IndexedDB, ensuring no chat data is stored in the cloud or elsewhere.
12+
![History](/app/frontend/src/assets/History.png)
1113

1214
## Summarize
1315
![Sum](/docs/sum.png)

0 commit comments

Comments
 (0)