@rowan-agent/models 0.4.4
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 +36 -0
- package/dist/chunk-J6S6ZJJA.js +1227 -0
- package/dist/index-ChnUfIk1.d.cts +426 -0
- package/dist/index-ChnUfIk1.d.ts +426 -0
- package/dist/index.cjs +1595 -0
- package/dist/index.d.cts +109 -0
- package/dist/index.d.ts +109 -0
- package/dist/index.js +337 -0
- package/dist/providers/index.cjs +1262 -0
- package/dist/providers/index.d.cts +1 -0
- package/dist/providers/index.d.ts +1 -0
- package/dist/providers/index.js +26 -0
- package/package.json +29 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { i as AnthropicConfig, B as BaseProviderConfig, O as OpenAICompletionsConfig, D as OpenAIResponsesConfig, G as ProviderError, H as ProviderFetch, R as ResolveAnthropicConfigInput, J as ResolveOpenAICompletionsConfigInput, N as ResolveOpenAIResponsesConfigInput, X as callOpenAICompletions, Y as createAnthropicStream, Z as createOpenAICompletionsStream, _ as createOpenAIResponsesStream, $ as resolveAnthropicConfig, a0 as resolveOpenAICompletionsConfig, a1 as resolveOpenAIResponsesConfig, a2 as streamAnthropic, a3 as streamOpenAICompletions, a4 as streamOpenAIResponses } from '../index-ChnUfIk1.cjs';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { i as AnthropicConfig, B as BaseProviderConfig, O as OpenAICompletionsConfig, D as OpenAIResponsesConfig, G as ProviderError, H as ProviderFetch, R as ResolveAnthropicConfigInput, J as ResolveOpenAICompletionsConfigInput, N as ResolveOpenAIResponsesConfigInput, X as callOpenAICompletions, Y as createAnthropicStream, Z as createOpenAICompletionsStream, _ as createOpenAIResponsesStream, $ as resolveAnthropicConfig, a0 as resolveOpenAICompletionsConfig, a1 as resolveOpenAIResponsesConfig, a2 as streamAnthropic, a3 as streamOpenAICompletions, a4 as streamOpenAIResponses } from '../index-ChnUfIk1.js';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ProviderError,
|
|
3
|
+
callOpenAICompletions,
|
|
4
|
+
createAnthropicStream,
|
|
5
|
+
createOpenAICompletionsStream,
|
|
6
|
+
createOpenAIResponsesStream,
|
|
7
|
+
resolveAnthropicConfig,
|
|
8
|
+
resolveOpenAICompletionsConfig,
|
|
9
|
+
resolveOpenAIResponsesConfig,
|
|
10
|
+
streamAnthropic,
|
|
11
|
+
streamOpenAICompletions,
|
|
12
|
+
streamOpenAIResponses
|
|
13
|
+
} from "../chunk-J6S6ZJJA.js";
|
|
14
|
+
export {
|
|
15
|
+
ProviderError,
|
|
16
|
+
callOpenAICompletions,
|
|
17
|
+
createAnthropicStream,
|
|
18
|
+
createOpenAICompletionsStream,
|
|
19
|
+
createOpenAIResponsesStream,
|
|
20
|
+
resolveAnthropicConfig,
|
|
21
|
+
resolveOpenAICompletionsConfig,
|
|
22
|
+
resolveOpenAIResponsesConfig,
|
|
23
|
+
streamAnthropic,
|
|
24
|
+
streamOpenAICompletions,
|
|
25
|
+
streamOpenAIResponses
|
|
26
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rowan-agent/models",
|
|
3
|
+
"version": "0.4.4",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./providers": {
|
|
15
|
+
"types": "./dist/providers/index.d.ts",
|
|
16
|
+
"import": "./dist/providers/index.js",
|
|
17
|
+
"require": "./dist/providers/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"tsup": "^8.5.1"
|
|
28
|
+
}
|
|
29
|
+
}
|