Skip to content

Commit

Permalink
Updated config
Browse files Browse the repository at this point in the history
  • Loading branch information
szczyglis-dev committed Dec 11, 2023
1 parent 1977135 commit e024685
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 11 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PYGPT v2

Release: **2.0.17** build: **2023.12.10** | Official website: https://pygpt.net | Docs: https://pygpt.readthedocs.io
Release: **2.0.18** build: **2023.12.10** | Official website: https://pygpt.net | Docs: https://pygpt.readthedocs.io

PyPi: https://pypi.org/project/pygpt-net

Expand Down Expand Up @@ -1072,6 +1072,10 @@ may consume additional tokens that are not displayed in the main window.

# CHANGELOG

## 2.0.18 (2023-12-10)

- Config fix

## 2.0.17 (2023-12-10)

- Small fixes
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'PYGPT'
copyright = '2023, pygpt.net'
author = 'szczyglis-dev, Marcin Szczygliński'
release = '2.0.17'
release = '2.0.18'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
PYGPT v2 - pygpt.net
====================

| **Last update:** 2023-12-10 21:00
| **Last update:** 2023-12-10 23:00
| **Project website:** https://pygpt.net
| **GitHub:** https://github.com/szczyglis-dev/py-gpt
| **PyPI:** https://pypi.org/project/pygpt-net
| **Release:** 2.0.17 (2023-12-10)
| **Release:** 2.0.18 (2023-12-10)
.. toctree::
:maxdepth: 3
Expand Down
2 changes: 1 addition & 1 deletion 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 = "pygpt-net"
version = "2.0.17"
version = "2.0.18"
description = "Desktop AI Assistant powered by GPT-4, GPT-4V, GPT-3, Whisper, TTS and DALL-E 3 with chatbot, assistant, text completion, vision and image generation, real-time internet access, commands and code execution, files upload and download and more"
readme = "README.md"
authors = [{ name = "Marcin Szczygliński", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '2.0.17'
VERSION = '2.0.18'
DESCRIPTION = 'Desktop AI Assistant powered by GPT-4, GPT-4V, GPT-3, Whisper, TTS and DALL-E 3 with chatbot, assistant, text completion, ' \
'vision and image generation, real-time internet access, commands and code execution, files upload and download and more'
LONG_DESCRIPTION = 'Package containing a GPT-4, GPT-4V, GPT-3, Whisper, TTS and DALL-E 3 AI desktop assistant with chatbot, ' \
Expand Down
3 changes: 3 additions & 0 deletions src/pygpt_net/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.0.18 (2023-12-10)
- Config fix

2.0.17 (2023-12-10)

- Small fixes
Expand Down
2 changes: 1 addition & 1 deletion src/pygpt_net/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__copyright__ = "Copyright 2023, Marcin Szczygliński"
__credits__ = ["Marcin Szczygliński"]
__license__ = "MIT"
__version__ = "2.0.17"
__version__ = "2.0.18"
__build__ = "2023.12.10"
__maintainer__ = "Marcin Szczygliński"
__github__ = "https://github.com/szczyglis-dev/py-gpt"
Expand Down
16 changes: 12 additions & 4 deletions src/pygpt_net/data/config/config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"__meta__": {
"version": "2.0.1",
"app.version": "2.0.1",
"updated_at": "2023-12-07T12:00:00"
"version": "2.0.18",
"app.version": "2.0.18",
"updated_at": "2023-12-10T23:00:00"
},
"ai_name": "",
"api_key": "",
Expand Down Expand Up @@ -36,10 +36,13 @@
"font_size.input": 12,
"font_size.ctx": 11,
"frequency_penalty": 0.0,
"img_prompt_model": "gpt-4-1106-preview",
"img_raw": false,
"img_resolution": "1024x1024",
"img_variants": 1,
"lang": "en",
"layout.density": 0,
"layout.splitters": {},
"max_context_history_items": 100,
"max_output_tokens": 1024,
"max_tokens_length": 32000,
Expand Down Expand Up @@ -82,5 +85,10 @@
"theme": "dark_teal",
"top_p": 1.0,
"use_context": true,
"user_name": ""
"user_name": "",
"vision.capture.auto": true,
"vision.capture.enabled": true,
"vision.capture.height": 600,
"vision.capture.idx": 0,
"vision.capture.width": 800
}

0 comments on commit e024685

Please sign in to comment.