@absolutejs/ai 0.0.40 → 0.0.42

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/README.md CHANGED
@@ -4,3 +4,11 @@ Standalone AI runtime and provider package extracted from AbsoluteJS.
4
4
 
5
5
  This package currently focuses on generic AI/chat/provider functionality.
6
6
  RAG remains a separate package.
7
+
8
+ Provider traffic can cross a trusted control plane without reimplementing a
9
+ vendor protocol. `remoteProvider()` carries normalized provider parameters and
10
+ chunks over SSE, while `createProviderProxyResponse()` hosts any
11
+ `AIProviderConfig` with pre-first-token and inter-token heartbeats. Provider
12
+ callbacks and abort objects never cross the wire. The Anthropic provider also
13
+ accepts an injectable `fetch`, allowing hosts to retain egress policy, tracing,
14
+ and test transports.