@openeryc/pi-coding-agent 0.75.45 → 0.75.47
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 +11 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +6 -2
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/auth-storage.d.ts +28 -1
- package/dist/core/auth-storage.d.ts.map +1 -1
- package/dist/core/auth-storage.js +21 -0
- package/dist/core/auth-storage.js.map +1 -1
- package/dist/core/http-dispatcher.d.ts +2 -0
- package/dist/core/http-dispatcher.d.ts.map +1 -1
- package/dist/core/http-dispatcher.js +10 -1
- package/dist/core/http-dispatcher.js.map +1 -1
- package/dist/core/model-registry.d.ts +20 -1
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +59 -0
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +3 -3
- package/dist/core/sdk.js.map +1 -1
- package/dist/modes/interactive/components/oauth-selector.d.ts +1 -1
- package/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/oauth-selector.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +9 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +197 -2
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [0.75.47] - 2026-05-30
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- `/login` now supports OpenAI-compatible API providers: enter base URL, API key, and model name(s) to connect to any OpenAI-compatible endpoint (Ollama, vLLM, LM Studio, custom gateways, etc.). Config persisted in auth.json and auto-restored on restart.
|
|
7
|
+
|
|
8
|
+
## [0.75.46] - 2026-05-29
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- HTTP transport upgraded: enabled HTTP/2, keep-alive (60s timeout, 300s max), connection pool (8 connections), and connect timeout (30s) for better network resilience
|
|
12
|
+
- Default provider retry settings when not explicitly configured: `timeoutMs` defaults to 600s (10 min), `maxRetries` defaults to 3, `maxRetryDelayMs` defaults to 60s
|
|
13
|
+
- Expanded retryable error pattern matching to catch more transient network errors (DNS failures, TLS errors, Node.js error codes like ECONNREFUSED/ECONNRESET/ETIMEDOUT, undici errors, AbortError)
|
|
4
14
|
|
|
5
15
|
## [0.75.42] - 2026-05-28
|
|
6
16
|
|