@mariozechner/pi-coding-agent 0.7.14 → 0.7.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## [0.7.
|
|
5
|
+
## [0.7.15] - 2025-11-17
|
|
6
6
|
|
|
7
7
|
### Fixed
|
|
8
8
|
|
|
9
9
|
- **Anthropic OAuth Support**: Added support for `ANTHROPIC_OAUTH_TOKEN` environment variable. The agent now checks for OAuth tokens before falling back to API keys for Anthropic models, enabling OAuth-based authentication.
|
|
10
|
+
|
|
11
|
+
## [0.7.14] - 2025-11-17
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
10
15
|
- **Mistral API Compatibility**: Fixed compatibility with Mistral API by excluding the `store` field and using `max_tokens` instead of `max_completion_tokens`, and avoiding the `developer` role in system prompts.
|
|
11
16
|
- **Error Display**: Fixed error message display in assistant messages to include proper spacing before the error text.
|
|
12
17
|
- **Message Streaming**: Fixed missing `message_start` event when no partial message chunks were received during streaming.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mariozechner/pi-coding-agent",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.15",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"prepublishOnly": "npm run clean && npm run build"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@mariozechner/pi-agent": "^0.7.
|
|
25
|
-
"@mariozechner/pi-ai": "^0.7.
|
|
24
|
+
"@mariozechner/pi-agent": "^0.7.15",
|
|
25
|
+
"@mariozechner/pi-ai": "^0.7.15",
|
|
26
26
|
"chalk": "^5.5.0",
|
|
27
27
|
"diff": "^8.0.2",
|
|
28
28
|
"glob": "^11.0.3"
|