Skip to content

Commit

Permalink
Merge pull request #193 from yjg30737/hotfix/all
Browse files Browse the repository at this point in the history
v1.8.2
  • Loading branch information
yjg30737 authored Nov 24, 2024
2 parents f3e7334 + 5b87c8b commit 50e27ce
Show file tree
Hide file tree
Showing 12 changed files with 495 additions and 842 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

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

"openai",
"anthropic",
Expand All @@ -27,7 +28,7 @@ dependencies = [
"docx2txt",
"openpyxl",

"g4f",
"g4f==0.3.3.4",
"curl_cffi",
"litellm",

Expand Down
5 changes: 4 additions & 1 deletion pyqt_openai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# For the sake of following the PEP8 standard, we will declare module-level dunder names.
# PEP8 standard about dunder names: https://peps.python.org/pep-0008/#module-level-dunder-names

__version__ = "1.8.1"
__version__ = "1.8.2"
__author__ = "Jung Gyu Yoon"

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

# For filtering out famous LLMs for image models
FAMOUS_LLM_LIST = ["gpt", "claude", "gemini", "llama", "meta", "qwen", "falcon"]

# Overall API configuration data
DEFAULT_API_CONFIGS = [
# OpenAI
Expand Down
Loading

0 comments on commit 50e27ce

Please sign in to comment.