Skip to content

Commit 50e27ce

Browse files
authored
Merge pull request #193 from yjg30737/hotfix/all
v1.8.2
2 parents f3e7334 + 5b87c8b commit 50e27ce

File tree

12 files changed

+495
-842
lines changed

12 files changed

+495
-842
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyqt-openai"
7-
version = "1.8.1"
7+
version = "1.8.2"
88
description = "Python multipurpose chatbot that user can use GPT, other AI models altogether (Release Name: VividNode)"
99
authors = [{ name = "Jung Gyu Yoon", email = "[email protected]" }]
1010
license = { text = "MIT" }
@@ -17,6 +17,7 @@ dependencies = [
1717
"pyaudio",
1818
"pillow",
1919
"psutil",
20+
"filetype",
2021

2122
"openai",
2223
"anthropic",
@@ -27,7 +28,7 @@ dependencies = [
2728
"docx2txt",
2829
"openpyxl",
2930

30-
"g4f",
31+
"g4f==0.3.3.4",
3132
"curl_cffi",
3233
"litellm",
3334

pyqt_openai/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# For the sake of following the PEP8 standard, we will declare module-level dunder names.
2424
# PEP8 standard about dunder names: https://peps.python.org/pep-0008/#module-level-dunder-names
2525

26-
__version__ = "1.8.1"
26+
__version__ = "1.8.2"
2727
__author__ = "Jung Gyu Yoon"
2828

2929
# Constants
@@ -411,6 +411,9 @@ def move_bin(filename, dst_dir):
411411
# This has to be managed separately since some of the arguments are different with usual models
412412
O1_MODELS = ["o1-preview", "o1-mini"]
413413

414+
# For filtering out famous LLMs for image models
415+
FAMOUS_LLM_LIST = ["gpt", "claude", "gemini", "llama", "meta", "qwen", "falcon"]
416+
414417
# Overall API configuration data
415418
DEFAULT_API_CONFIGS = [
416419
# OpenAI

0 commit comments

Comments
 (0)