You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[v1.1.0] - [03/28/2024]
- v1.1.0 introduces a major change removing the use of `httpx` & `asyncio` and implementing `requests`, making it more accessible.
Copy file name to clipboardExpand all lines: .github/CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,26 @@ All notable changes to the project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## [v1.1.0] - [03/28/2024]
8
+
9
+
-*v1.1.0 introduces a major change removing the use of `httpx` & `asyncio` and implementing `requests`, making it more accessible.*
10
+
11
+
### Added
12
+
- Default model configuration in `config.py` for fallback model specification.
13
+
14
+
### Changed
15
+
- Loading spinner implementation in `loading.py` to use threading instead of asyncio.
16
+
- Refactored `mistral.py` into two separate classes for different types of interactions.
17
+
- Switched HTTP client library from `httpx` to `requests` in `client.py`.
18
+
- Updated CLI argument parser and help text in `cli.py` to reflect the new functionalities and simplifications.
19
+
20
+
### Improved
21
+
- Error messaging in `config.py` for missing environment variables or missing `dotenv` package.
22
+
- Response formatting in `client.py` to handle newline characters correctly.
23
+
24
+
### Fixed
25
+
- Handling of newline characters in responses for better output formatting in `client.py`.
0 commit comments