Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
led-mirage committed Apr 29, 2024
1 parent 8c66ac5 commit a8bac34
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Windowsの場合は、Windowsの検索窓で「環境変数を編集」で検索

以下のリンクから ZundaGPT2Lite.ZIP をダウンロードして、作成したフォルダに展開するのだ。

https://github.com/led-mirage/ZundaGPT2Lite/releases/tag/v0.5.0
https://github.com/led-mirage/ZundaGPT2Lite/releases/tag/v0.6.0

#### 3. 実行

Expand Down Expand Up @@ -125,9 +125,9 @@ OpenAIのAPIキーはあなただけのものなので、人に教えたらダ
これが嫌な人は(ボクも嫌だけど)、Python本体をインストールしてPythonから普通に実行して欲しいのだ。実行ファイルのほうが手軽だし、そのほうがPythonに詳しくない人にとっては簡単なんだけど、誤認問題がついて回ることは覚えておいて欲しいのだ。

VirusTotalでのチェック結果は以下の通りなのだ。
71個中6個のアンチウィルスエンジンで検出 :2024/04/21 v0.5.0)。
72個中5個のアンチウィルスエンジンで検出 :2024/04/29 v0.6.0)。

<img src="doc/virustotal_0.5.0.png" width="600">
<img src="doc/virustotal_0.6.0.png" width="600">

### ⚡ 免責事項

Expand Down Expand Up @@ -211,3 +211,7 @@ VirusTotalでのチェック結果は以下の通りなのだ。
- openaiのバージョンを1.12.0から1.23.2に更新
- ChatAPIのタイムアウト値を設定ファイル(app_config.json)に持つように変更
- AIの回答中にあるURLが正しくリンク表示にならない問題に対処

### 0.6.0 (2024/4/29)

- Tex形式の行列式が正しく表示されない問題を解消
4 changes: 2 additions & 2 deletions app/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,12 @@

// TeX用の文字列をエスケープする
function escapeTex(text) {
return text.replace(/\\/g, "\\\\");
return text.replace(/\\/g, "@@@@");
}

// TeX用にエスケープした文字列を元に戻す
function unescapeTex(text) {
return text.replace(/\\\\/g, "\\");
return text.replace(/@@@@/g, "\\");
}

// Welcomeメッセージの表示をON/OFFする
Expand Down
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from chat_log import ChatLog

APP_NAME = "ZundaGPT2 Lite"
APP_VERSION = "0.5.0"
APP_VERSION = "0.6.0"
COPYRIGHT = "Copyright 2024 led-mirage"

# アプリケーションクラス
Expand Down
Binary file added doc/virustotal_0.6.0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a8bac34

Please sign in to comment.