@toren-run/providers 0.1.0 → 0.1.1
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 +5 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# @toren-run/providers
|
|
2
|
+
|
|
3
|
+
Model provider adapters for [Toren](https://toren.run): Anthropic and OpenAI, mapped onto the runtime's normalized transcript shape so every call lands in the durable event log the same way. Routing is by model prefix in `agent.yaml` (`anthropic/claude-opus-5`, `openai/gpt-4o`); each SDK loads lazily on first use, so a deployment that never routes a prefix never parses that SDK.
|
|
4
|
+
|
|
5
|
+
Installed automatically with the `toren-run` CLI. **Docs:** [toren.run/docs](https://toren.run/docs). Apache-2.0.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toren-run/providers",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@anthropic-ai/sdk": "^0.110.0",
|
|
13
13
|
"openai": "^4.68.0",
|
|
14
|
-
"@toren-run/core": "^0.1.
|
|
14
|
+
"@toren-run/core": "^0.1.1"
|
|
15
15
|
},
|
|
16
16
|
"description": "Model provider adapters for Toren (Anthropic, OpenAI) — each SDK loads lazily on first use.",
|
|
17
17
|
"license": "Apache-2.0",
|