@chaoslabs/ai-sdk 0.0.6 → 0.0.7
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/package.json +1 -1
- package/dist/__tests__/http-streaming.test.d.ts +0 -15
- package/dist/__tests__/http-streaming.test.js +0 -1401
- package/dist/__tests__/stream.test.d.ts +0 -1
- package/dist/__tests__/stream.test.js +0 -345
- package/dist/__tests__/trivial.test.d.ts +0 -1
- package/dist/__tests__/trivial.test.js +0 -6
- package/dist/blocks.d.ts +0 -108
- package/dist/blocks.js +0 -246
- package/dist/conversation.d.ts +0 -136
- package/dist/conversation.js +0 -230
- package/dist/primitives.d.ts +0 -157
- package/dist/primitives.js +0 -220
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* HTTP Streaming Tests (TDD - RED Phase)
|
|
3
|
-
*
|
|
4
|
-
* These tests verify the http-based streaming implementation that will replace fetch.
|
|
5
|
-
* Tests are written BEFORE the implementation (TDD RED phase).
|
|
6
|
-
*
|
|
7
|
-
* The implementation will use Node's native http/https modules for streaming
|
|
8
|
-
* instead of fetch to ensure proper incremental streaming behavior.
|
|
9
|
-
*
|
|
10
|
-
* KEY TESTS THAT MUST FAIL INITIALLY:
|
|
11
|
-
* - httpStreamRequest function (doesn't exist yet)
|
|
12
|
-
* - StreamingHttpClient class (doesn't exist yet)
|
|
13
|
-
* - useNativeHttp option (doesn't exist yet)
|
|
14
|
-
*/
|
|
15
|
-
export {};
|