effect-uai 0.1.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 +11 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# effect-uai
|
|
2
|
+
|
|
3
|
+
This npm name is **reserved** for the `effect-uai` project. The functional
|
|
4
|
+
packages live under the `@betalyra` scope:
|
|
5
|
+
|
|
6
|
+
- [`@betalyra/effect-uai-core`](https://www.npmjs.com/package/@betalyra/effect-uai-core)
|
|
7
|
+
- low-level primitives (loop, conversation, items, tools, streaming codecs).
|
|
8
|
+
- [`@betalyra/effect-uai-responses`](https://www.npmjs.com/package/@betalyra/effect-uai-responses)
|
|
9
|
+
- OpenAI Responses API provider.
|
|
10
|
+
|
|
11
|
+
Project repository: https://github.com/betalyra/effect-uai
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "effect-uai",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Reserved name. See @betalyra/effect-uai-core and @betalyra/effect-uai-responses.",
|
|
5
|
+
"homepage": "https://github.com/betalyra/effect-uai#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/betalyra/effect-uai/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "Betalyra",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/betalyra/effect-uai"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"typecheck": "echo 'no-op'"
|
|
17
|
+
}
|
|
18
|
+
}
|