Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
使用するライブラリを最新版に更新
  • Loading branch information
led-mirage committed Dec 7, 2024
1 parent 370daa4 commit 7148918
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
26 changes: 17 additions & 9 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ ZundaGPT2(https://github.com/led-mirage/ZundaGPT2) のライト版なのだ。Zu

OpenAI、AzureOpenAI Service、Google Geminiを使って、AIとチャットできるチャットクライアントソフトウェアなのだ。

## 最新情報 バージョン 1.2.0
## 最新情報 バージョン 1.2.2

アプリのアイコンを追加したのだ
最新のライブラリを使うようにしたのだ

## スクリーンショット

<img src="doc/screenshot.png" width="600">

## 動作確認環境

- Windows 11 Pro 23H2
- Windows 11 Pro 23H2、24H2
- Python 3.12.0

## 必要なもの
Expand Down Expand Up @@ -154,28 +154,29 @@ OpenAIやGoogle GeminiのAPIキーはあなただけのものなので、人に

これが嫌な人は(ボクも嫌だけど)、Python本体をインストールしてPythonから普通に実行して欲しいのだ。実行ファイルのほうが手軽だし、そのほうがPythonに詳しくない人にとっては簡単なんだけど、誤認問題がついて回ることは覚えておいて欲しいのだ。

VirusTotalでのチェック結果は以下の通りなのだ。
(74個中4個のアンチウィルスエンジンで検出 :2024/07/06 v1.2.1)。
VirusTotalでの[チェック結果](https://www.virustotal.com/gui/file/4b86dd12eb7bfb5902545c438753197e9fbe147fbda889b3c0068c27e444c4e2
)は以下の通りなのだ。
(71個中4個のアンチウィルスエンジンで検出 :2024/12/07 v1.2.2)。

<img src="doc/virustotal_1.2.0.png" width="600">
<img src="doc/virustotal_1.2.2.png" width="600">

### ⚡ 免責事項

いまのところ特に問題点は見つかっていないけど、バグなんてものは潜在的に必ずあるし、0になるなんてことはあり得ないのだ。また、もしバグがあってそのせいで貴方に損害を与えたとしても、著作権者はいかなる責任も負いかねるのでその点を理解して使って欲しいのだ。

## 使用しているライブラリ

### 🔖 pywebview 4.4.1
### 🔖 pywebview 5.3.2

ホームページ: https://github.com/r0x0r/pywebview
ライセンス:BSD-3-Clause license

### 🔖 openai 1.33.0
### 🔖 openai 1.57.0

ホームページ: https://github.com/openai/openai-python
ライセンス:Apache License 2.0

### 🔖 google-generativeai 0.6.0
### 🔖 google-generativeai 0.8.3

ホームページ: https://github.com/google-gemini/generative-ai-python
ライセンス:Apache License 2.0
Expand Down Expand Up @@ -285,3 +286,10 @@ VirusTotalでのチェック結果は以下の通りなのだ。

- 回答表示処理中にブラウザでエラー(OUT OF MEMORYなど)が発生する場合がある問題に対処
parsedSentenceメソッド中のMathJax.typesetPromise()をコメントアウト

### 1.2.2 (2024/12/07)

- 古いライブラリでは動かなくなっていたので、以下のライブラリを最新版にアップデート
- pywebviewのバージョンを5.3.2に更新
- openaiのバージョンを1.57.0に更新
- google-generativeaiのバージョンを0.8.3に更新
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 = "1.2.1"
APP_VERSION = "1.2.2"
COPYRIGHT = "Copyright 2024 led-mirage"

# アプリケーションクラス
Expand Down
Binary file added doc/virustotal_1.2.2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pywebview==4.4.1
pywebview==5.3.2
requests==2.32.3
openai==1.33.0
google-generativeai==0.6.0
openai==1.57.0
google-generativeai==0.8.3

0 comments on commit 7148918

Please sign in to comment.