Skip to content

Commit

Permalink
Updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
szczyglis-dev committed Dec 16, 2024
1 parent 36be488 commit c3c87a4
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 19 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## 2.4.46 (2024-12-16)

- Added a new tab in Settings: "API Keys," where the API keys configuration for Google and Anthropic models has been relocated.
- Introduced a new mode in "Chat with Files": "Retrieve Only," which allows for retrieving raw documents from the index.
- Added a new tab in Settings: "API Keys", where the API keys configuration for Google and Anthropic models has been relocated.
- Introduced a new mode in "Chat with Files": "Retrieve Only", which allows for retrieving raw documents from the index.
- Fixed a bug related to tool calls in the Gemini provider when using Chat with Files mode.

## 2.4.45 (2024-12-16)
Expand Down
26 changes: 19 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2725,21 +2725,33 @@ Config -> Settings...

**General**

- `OpenAI API KEY`: The personal API key you'll need to enter into the application for it to function.
- `Minimize to tray on exit`: Minimize to tray icon on exit. Tray icon enabled is required for this option to work. Default: False.

- `Render engine`: chat output render engine: `WebEngine / Chromium` - for full HTML/CSS and `Legacy (markdown)` for legacy, simple markdown CSS output. Default: WebEngine / Chromium.

- `OpenGL hardware acceleration`: enables hardware acceleration in `WebEngine / Chromium` renderer. Default: False.

- `Application environment (os.environ)`: Additional environment vars to set on application start.

**API Keys**

- `OpenAI API KEY`: Required for the OpenAI API. If you wish to use custom endpoints or local APIs, then you may enter any value here.

- `OpenAI ORGANIZATION KEY`: The organization's API key, which is optional for use within the application.

- `API Endpoint`: OpenAI API endpoint URL, default: https://api.openai.com/v1.

- `Proxy address`: Proxy address to be used for connection; supports HTTP/SOCKS.

- `Minimize to tray on exit`: Minimize to tray icon on exit. Tray icon enabled is required for this option to work. Default: False.
- `Google API KEY`: Required for the Google API and Gemini models.

- `Render engine`: chat output render engine: `WebEngine / Chromium` - for full HTML/CSS and `Legacy (markdown)` for legacy, simple markdown CSS output. Default: WebEngine / Chromium.
- `Anthropic API KEY`: Required for the Anthropic API and Claude models.

- `OpenGL hardware acceleration`: enables hardware acceleration in `WebEngine / Chromium` renderer. Default: False.
- `HuggingFace API KEY`: Required for the HuggingFace API.

- `Application environment (os.environ)`: Additional environment vars to set on application start.
- `OpenAI API version`: Azure OpenAI API version, e.g. 2023-07-01-preview

- `Azure OpenAI API endpoint`: Azure OpenAI API endpoint, https://<your-resource-name>.openai.azure.com/

**Layout**

Expand Down Expand Up @@ -3942,8 +3954,8 @@ may consume additional tokens that are not displayed in the main window.

**2.4.46 (2024-12-16)**

- Added a new tab in Settings: "API Keys," where the API keys configuration for Google and Anthropic models has been relocated.
- Introduced a new mode in "Chat with Files": "Retrieve Only," which allows for retrieving raw documents from the index.
- Added a new tab in Settings: "API Keys", where the API keys configuration for Google and Anthropic models has been relocated.
- Introduced a new mode in "Chat with Files": "Retrieve Only", which allows for retrieving raw documents from the index.
- Fixed a bug related to tool calls in the Gemini provider when using Chat with Files mode.

**2.4.45 (2024-12-16)**
Expand Down
28 changes: 20 additions & 8 deletions docs/source/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@ The following basic options can be modified directly within the application:

**General**

* ``OpenAI API KEY``: The personal API key you'll need to enter into the application for it to function.

* ``OpenAI ORGANIZATION KEY``: The organization's API key, which is optional for use within the application.

* ``API Endpoint``: OpenAI API endpoint URL, default: https://api.openai.com/v1.

* ``Proxy address``: Proxy address to be used for connection; supports HTTP/SOCKS.

* ``Show tray icon``: Show/hide tray icon. Tray icon provides additional features like "Ask with screenshot" or "Open notepad". Restart of the application is required for this option to take effect. Default: True.

* ``Minimize to tray on exit``: Minimize to tray icon on exit. Tray icon enabled is required for this option to work. Default: False.
Expand All @@ -33,6 +25,26 @@ The following basic options can be modified directly within the application:

* ``Application environment (os.environ)``: Additional environment vars to set on application start.

**API Keys**

- ``OpenAI API KEY``: Required for the OpenAI API. If you wish to use custom endpoints or local APIs, then you may enter any value here.

- ``OpenAI ORGANIZATION KEY``: The organization's API key, which is optional for use within the application.

- ``API Endpoint``: OpenAI API endpoint URL, default: https://api.openai.com/v1.

- ``Proxy address``: Proxy address to be used for connection; supports HTTP/SOCKS.

- ``Google API KEY``: Required for the Google API and Gemini models.

- ``Anthropic API KEY``: Required for the Anthropic API and Claude models.

- ``HuggingFace API KEY``: Required for the HuggingFace API.

- ``OpenAI API version``: Azure OpenAI API version, e.g. 2023-07-01-preview

- ``Azure OpenAI API endpoint``: Azure OpenAI API endpoint, https://<your-resource-name>.openai.azure.com/

**Layout**

* ``Zoom``: Adjusts the zoom in chat window (web render view). `WebEngine / Chromium` render mode only.
Expand Down
4 changes: 2 additions & 2 deletions src/pygpt_net/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
2.4.46 (2024-12-16)

- Added a new tab in Settings: "API Keys," where the API keys configuration for Google and Anthropic models has been relocated.
- Introduced a new mode in "Chat with Files": "Retrieve Only," which allows for retrieving raw documents from the index.
- Added a new tab in Settings: "API Keys", where the API keys configuration for Google and Anthropic models has been relocated.
- Introduced a new mode in "Chat with Files": "Retrieve Only", which allows for retrieving raw documents from the index.
- Fixed a bug related to tool calls in the Gemini provider when using Chat with Files mode.

2.4.45 (2024-12-16)
Expand Down

0 comments on commit c3c87a4

Please sign in to comment.