@athenaintel/react 0.11.3 → 0.12.0
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 +19 -6
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/runtime/transport.d.ts +5 -2
- package/package.json +1 -1
|
@@ -5,8 +5,11 @@ export declare const ATHENA_TRANSPORTS: {
|
|
|
5
5
|
/** Chat transport mode: `legacy` (Iris `/api/chat` assistant-transport) or
|
|
6
6
|
* `statewire` (Iris `/v2/threads` deep-agent statewire sync). */
|
|
7
7
|
export type AthenaTransport = (typeof ATHENA_TRANSPORTS)[keyof typeof ATHENA_TRANSPORTS];
|
|
8
|
-
/**
|
|
9
|
-
*
|
|
8
|
+
/** Statewire is the default as of 0.12.0: it is the maintained transport
|
|
9
|
+
* (server-hosted threads, mid-run queueing, HITL, client tools for
|
|
10
|
+
* recognized SDK hosts) and was validated live across SDK hosts on
|
|
11
|
+
* 2026-08-27. Pass `transport: 'legacy'` to opt a deployment back out;
|
|
12
|
+
* note that threads created on one transport are read-only from the other. */
|
|
10
13
|
export declare const DEFAULT_ATHENA_TRANSPORT: AthenaTransport;
|
|
11
14
|
export interface ResolvedAthenaTransport {
|
|
12
15
|
transport: AthenaTransport;
|