anyfast 0.0.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/LICENSE +189 -0
- package/README.md +281 -0
- package/dist/asset.d.ts +14 -0
- package/dist/asset.js +34 -0
- package/dist/chat.d.ts +35 -0
- package/dist/chat.js +63 -0
- package/dist/client.d.ts +26 -0
- package/dist/client.js +186 -0
- package/dist/file.d.ts +8 -0
- package/dist/file.js +65 -0
- package/dist/image.d.ts +11 -0
- package/dist/image.js +28 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +35 -0
- package/dist/sse-parser.d.ts +2 -0
- package/dist/sse-parser.js +66 -0
- package/dist/task-utils.d.ts +24 -0
- package/dist/task-utils.js +59 -0
- package/dist/types/asset.d.ts +62 -0
- package/dist/types/asset.js +3 -0
- package/dist/types/chat.d.ts +192 -0
- package/dist/types/chat.js +3 -0
- package/dist/types/common.d.ts +40 -0
- package/dist/types/common.js +13 -0
- package/dist/types/file.d.ts +22 -0
- package/dist/types/file.js +2 -0
- package/dist/types/image.d.ts +20 -0
- package/dist/types/image.js +2 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/index.js +22 -0
- package/dist/types/video.d.ts +95 -0
- package/dist/types/video.js +3 -0
- package/dist/types.d.ts +1 -0
- package/dist/types.js +18 -0
- package/dist/upload/s3-uploader.d.ts +10 -0
- package/dist/upload/s3-uploader.js +123 -0
- package/dist/video.d.ts +17 -0
- package/dist/video.js +64 -0
- package/package.json +36 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work.
|
|
38
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean any work of authorship, including
|
|
48
|
+
the original version of the Work and any modifications or additions
|
|
49
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
50
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
51
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
52
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
53
|
+
means any form of electronic, verbal, or written communication sent
|
|
54
|
+
to the Licensor or its representatives, including but not limited to
|
|
55
|
+
communication on electronic mailing lists, source code control systems,
|
|
56
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
57
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
58
|
+
excluding communication that is conspicuously marked or otherwise
|
|
59
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
60
|
+
|
|
61
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
62
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
63
|
+
subsequently incorporated within the Work.
|
|
64
|
+
|
|
65
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
66
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
67
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
68
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
69
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
70
|
+
Work and such Derivative Works in Source or Object form.
|
|
71
|
+
|
|
72
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
73
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
74
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
75
|
+
(except as stated in this section) patent license to make, have made,
|
|
76
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
77
|
+
where such license applies only to those patent claims licensable
|
|
78
|
+
by such Contributor that are necessarily infringed by their
|
|
79
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
80
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
81
|
+
institute patent litigation against any entity (including a
|
|
82
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
83
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
84
|
+
or contributory patent infringement, then any patent licenses
|
|
85
|
+
granted to You under this License for that Work shall terminate
|
|
86
|
+
as of the date such litigation is filed.
|
|
87
|
+
|
|
88
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
89
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
90
|
+
modifications, and in Source or Object form, provided that You
|
|
91
|
+
meet the following conditions:
|
|
92
|
+
|
|
93
|
+
(a) You must give any other recipients of the Work or
|
|
94
|
+
Derivative Works a copy of this License; and
|
|
95
|
+
|
|
96
|
+
(b) You must cause any modified files to carry prominent notices
|
|
97
|
+
stating that You changed the files; and
|
|
98
|
+
|
|
99
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
100
|
+
that You distribute, all copyright, patent, trademark, and
|
|
101
|
+
attribution notices from the Source form of the Work,
|
|
102
|
+
excluding those notices that do not pertain to any part of
|
|
103
|
+
the Derivative Works; and
|
|
104
|
+
|
|
105
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
106
|
+
distribution, then any Derivative Works that You distribute must
|
|
107
|
+
include a readable copy of the attribution notices contained
|
|
108
|
+
within such NOTICE file, excluding any notices that do not
|
|
109
|
+
pertain to any part of the Derivative Works, in at least one
|
|
110
|
+
of the following places: within a NOTICE text file distributed
|
|
111
|
+
as part of the Derivative Works; within the Source form or
|
|
112
|
+
documentation, if provided along with the Derivative Works; or,
|
|
113
|
+
within a display generated by the Derivative Works, if and
|
|
114
|
+
wherever such third-party notices normally appear. The contents
|
|
115
|
+
of the NOTICE file are for informational purposes only and
|
|
116
|
+
do not modify the License. You may add Your own attribution
|
|
117
|
+
notices within Derivative Works that You distribute, alongside
|
|
118
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
119
|
+
that such additional attribution notices cannot be construed
|
|
120
|
+
as modifying the License.
|
|
121
|
+
|
|
122
|
+
You may add Your own copyright statement to Your modifications and
|
|
123
|
+
may provide additional or different license terms and conditions
|
|
124
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
125
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
126
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
127
|
+
the conditions stated in this License.
|
|
128
|
+
|
|
129
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
130
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
131
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
132
|
+
this License, without any additional terms or conditions.
|
|
133
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
134
|
+
the terms of any separate license agreement you may have executed
|
|
135
|
+
with Licensor regarding such Contributions.
|
|
136
|
+
|
|
137
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
138
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
139
|
+
except as required for reasonable and customary use in describing the
|
|
140
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
141
|
+
|
|
142
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
143
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
144
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
145
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
146
|
+
implied, including, without limitation, any warranties or conditions
|
|
147
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
148
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
149
|
+
appropriateness of using or redistributing the Work and assume any
|
|
150
|
+
risks associated with Your exercise of permissions under this License.
|
|
151
|
+
|
|
152
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
153
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
154
|
+
unless required by applicable law (such as deliberate and grossly
|
|
155
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
156
|
+
liable to You for damages, including any direct, indirect, special,
|
|
157
|
+
incidental, or consequential damages of any character arising as a
|
|
158
|
+
result of this License or out of the use or inability to use the
|
|
159
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
160
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
161
|
+
other commercial damages or losses), even if such Contributor
|
|
162
|
+
has been advised of the possibility of such damages.
|
|
163
|
+
|
|
164
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
165
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
166
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
167
|
+
or other liability obligations and/or rights consistent with this
|
|
168
|
+
License. However, in accepting such obligations, You may act only
|
|
169
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
170
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
171
|
+
defend, and hold each Contributor harmless for any liability
|
|
172
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
173
|
+
of your accepting any such warranty or additional liability.
|
|
174
|
+
|
|
175
|
+
END OF TERMS AND CONDITIONS
|
|
176
|
+
|
|
177
|
+
Copyright 2024 AnyFast
|
|
178
|
+
|
|
179
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
180
|
+
you may not use this file except in compliance with the License.
|
|
181
|
+
You may obtain a copy of the License at
|
|
182
|
+
|
|
183
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
184
|
+
|
|
185
|
+
Unless required by applicable law or agreed to in writing, software
|
|
186
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
187
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
188
|
+
See the License for the specific language governing permissions and
|
|
189
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
# AnyFast Node.js SDK
|
|
2
|
+
|
|
3
|
+
AnyFast Node.js SDK for AI services including chat completions, image generation, video generation, and asset management.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install anyfast
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Configuration
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { AnyFast } from 'anyfast';
|
|
15
|
+
|
|
16
|
+
const client = new AnyFast({
|
|
17
|
+
apiKey: 'your-api-key',
|
|
18
|
+
baseURL: 'https://www.anyfast.ai', // optional, this is the default
|
|
19
|
+
});
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Or use the `ANYFAST_API_KEY` environment variable:
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
const client = new AnyFast();
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Options
|
|
29
|
+
|
|
30
|
+
| Option | Default | Description |
|
|
31
|
+
|--------|---------|-------------|
|
|
32
|
+
| `apiKey` | `process.env.ANYFAST_API_KEY` | API key for authentication |
|
|
33
|
+
| `baseURL` | `https://www.anyfast.ai` | API base URL |
|
|
34
|
+
| `gatewayURL` | `https://www.anyfast.ai` | Gateway URL for file upload |
|
|
35
|
+
| `timeout` | `30000` | Request timeout in milliseconds |
|
|
36
|
+
|
|
37
|
+
## Chat Completions
|
|
38
|
+
|
|
39
|
+
### OpenAI-compatible (`/v1/chat/completions`)
|
|
40
|
+
|
|
41
|
+
Works with GPT, Claude, Doubao, DeepSeek, Qwen, Grok, Gemini (compat), MiniMax, Kimi, etc.
|
|
42
|
+
|
|
43
|
+
```typescript
|
|
44
|
+
const result = await client.chat.completions({
|
|
45
|
+
model: 'gpt-4o',
|
|
46
|
+
messages: [{ role: 'user', content: 'Hello!' }],
|
|
47
|
+
});
|
|
48
|
+
console.log(result.choices[0].message.content);
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
#### Streaming
|
|
52
|
+
|
|
53
|
+
```typescript
|
|
54
|
+
const stream = await client.chat.completions({
|
|
55
|
+
model: 'gpt-4o',
|
|
56
|
+
messages: [{ role: 'user', content: 'Hello!' }],
|
|
57
|
+
stream: true,
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
for await (const chunk of stream) {
|
|
61
|
+
process.stdout.write(chunk.choices[0]?.delta?.content || '');
|
|
62
|
+
}
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Anthropic Messages (`/v1/messages`)
|
|
66
|
+
|
|
67
|
+
```typescript
|
|
68
|
+
const result = await client.chat.messages({
|
|
69
|
+
model: 'claude-sonnet-4-20250514',
|
|
70
|
+
messages: [{ role: 'user', content: 'Hello!' }],
|
|
71
|
+
max_tokens: 1024,
|
|
72
|
+
});
|
|
73
|
+
console.log(result.content[0].text);
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Doubao Responses (`/v1/responses`)
|
|
77
|
+
|
|
78
|
+
```typescript
|
|
79
|
+
const result = await client.chat.responses({
|
|
80
|
+
model: 'doubao-seed-2.0-pro',
|
|
81
|
+
input: 'Hello!',
|
|
82
|
+
});
|
|
83
|
+
console.log(result.output[0].content?.[0].text);
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Supports multimodal input:
|
|
87
|
+
|
|
88
|
+
```typescript
|
|
89
|
+
const result = await client.chat.responses({
|
|
90
|
+
model: 'doubao-seed-1-6-vision-250815',
|
|
91
|
+
input: [
|
|
92
|
+
{
|
|
93
|
+
role: 'user',
|
|
94
|
+
content: [
|
|
95
|
+
{ type: 'input_text', text: 'What is in this image?' },
|
|
96
|
+
{ type: 'input_image', image_url: 'https://example.com/photo.png' },
|
|
97
|
+
],
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
});
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### Gemini Native (`/v1beta/models/{model}:generateContent`)
|
|
104
|
+
|
|
105
|
+
```typescript
|
|
106
|
+
const result = await client.chat.gemini('gemini-2.0-flash', {
|
|
107
|
+
contents: [
|
|
108
|
+
{ role: 'user', parts: [{ text: 'Hello!' }] },
|
|
109
|
+
],
|
|
110
|
+
});
|
|
111
|
+
console.log(result.candidates[0].content.parts[0].text);
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## Image Generation
|
|
115
|
+
|
|
116
|
+
### Synchronous
|
|
117
|
+
|
|
118
|
+
```typescript
|
|
119
|
+
const result = await client.image.generate({
|
|
120
|
+
model: 'flux-2-pro',
|
|
121
|
+
prompt: 'A beautiful sunset over the ocean',
|
|
122
|
+
size: '1024x1024',
|
|
123
|
+
});
|
|
124
|
+
console.log(result.data[0]?.url);
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### Async with Polling
|
|
128
|
+
|
|
129
|
+
```typescript
|
|
130
|
+
const response = await client.image.generateAsync({
|
|
131
|
+
model: 'doubao-seedream-5-0-260128',
|
|
132
|
+
prompt: 'A beautiful sunset over the ocean',
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
let status = await client.image.queryTask(response.taskId!);
|
|
136
|
+
while (status.isProcessing()) {
|
|
137
|
+
await new Promise((r) => setTimeout(r, 2000));
|
|
138
|
+
status = await client.image.queryTask(response.taskId!);
|
|
139
|
+
}
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### Blocking Run
|
|
143
|
+
|
|
144
|
+
```typescript
|
|
145
|
+
const status = await client.image.run(
|
|
146
|
+
{ model: 'flux-2-pro', prompt: 'A beautiful sunset' },
|
|
147
|
+
{ pollIntervalMs: 3000, timeoutMs: 180000 }
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
if (status.isCompleted()) {
|
|
151
|
+
console.log(status.result);
|
|
152
|
+
}
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
## Video Generation
|
|
156
|
+
|
|
157
|
+
### Seedance
|
|
158
|
+
|
|
159
|
+
```typescript
|
|
160
|
+
const status = await client.video.run(
|
|
161
|
+
{
|
|
162
|
+
model: 'seedance',
|
|
163
|
+
content: [{ type: 'text', text: 'A cat playing with a ball' }],
|
|
164
|
+
resolution: '720p',
|
|
165
|
+
ratio: '16:9',
|
|
166
|
+
duration: 5,
|
|
167
|
+
},
|
|
168
|
+
{ pollIntervalMs: 5000, timeoutMs: 600000 }
|
|
169
|
+
);
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Image-to-video:
|
|
173
|
+
|
|
174
|
+
```typescript
|
|
175
|
+
const status = await client.video.run({
|
|
176
|
+
model: 'seedance',
|
|
177
|
+
content: [
|
|
178
|
+
{ type: 'text', text: 'Make it come alive' },
|
|
179
|
+
{ type: 'image_url', image_url: { url: 'https://example.com/frame.jpg' }, role: 'first_frame' },
|
|
180
|
+
],
|
|
181
|
+
});
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### Kling
|
|
185
|
+
|
|
186
|
+
```typescript
|
|
187
|
+
// Text-to-video
|
|
188
|
+
const status = await client.video.runKlingText2Video(
|
|
189
|
+
{
|
|
190
|
+
model_name: 'kling-v2-master',
|
|
191
|
+
prompt: 'A sunset over the ocean',
|
|
192
|
+
mode: 'pro',
|
|
193
|
+
duration: '10',
|
|
194
|
+
aspect_ratio: '16:9',
|
|
195
|
+
},
|
|
196
|
+
{ pollIntervalMs: 5000 }
|
|
197
|
+
);
|
|
198
|
+
|
|
199
|
+
// Image-to-video
|
|
200
|
+
const status = await client.video.runKlingImage2Video({
|
|
201
|
+
model_name: 'kling-v2-master',
|
|
202
|
+
image: 'https://example.com/frame.jpg',
|
|
203
|
+
prompt: 'Make it move',
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
// Multi-image-to-video
|
|
207
|
+
const status = await client.video.runKlingMultiImage2Video({
|
|
208
|
+
model_name: 'kling-v1-6',
|
|
209
|
+
image_list: [
|
|
210
|
+
{ image: 'https://example.com/1.jpg' },
|
|
211
|
+
{ image: 'https://example.com/2.jpg' },
|
|
212
|
+
],
|
|
213
|
+
prompt: 'Transition between scenes',
|
|
214
|
+
});
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
Manual polling for Kling:
|
|
218
|
+
|
|
219
|
+
```typescript
|
|
220
|
+
const response = await client.video.klingText2Video({
|
|
221
|
+
model_name: 'kling-v2-master',
|
|
222
|
+
prompt: 'A cat',
|
|
223
|
+
});
|
|
224
|
+
|
|
225
|
+
const status = await client.video.klingQueryTask('text2video', response.taskId!);
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
## Asset Management (ByteDance Volc)
|
|
229
|
+
|
|
230
|
+
```typescript
|
|
231
|
+
// Create asset group
|
|
232
|
+
const group = await client.asset.createGroup({ Name: 'my-group' });
|
|
233
|
+
|
|
234
|
+
// List groups
|
|
235
|
+
const groups = await client.asset.listGroups();
|
|
236
|
+
|
|
237
|
+
// Upload asset
|
|
238
|
+
const asset = await client.asset.createAsset({
|
|
239
|
+
GroupId: group.Id,
|
|
240
|
+
Name: 'reference-image',
|
|
241
|
+
AssetType: 'Image',
|
|
242
|
+
URL: 'https://example.com/image.png',
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
// List assets
|
|
246
|
+
const assets = await client.asset.listAssets({
|
|
247
|
+
Filter: { GroupIds: [group.Id] },
|
|
248
|
+
});
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
## File Upload
|
|
252
|
+
|
|
253
|
+
```typescript
|
|
254
|
+
const fileUrl = await client.file.upload('./my-image.png');
|
|
255
|
+
console.log('Uploaded:', fileUrl);
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
Files larger than 8MB are automatically uploaded using multipart upload.
|
|
259
|
+
|
|
260
|
+
## Error Handling
|
|
261
|
+
|
|
262
|
+
```typescript
|
|
263
|
+
import { AnyFastError } from 'anyfast';
|
|
264
|
+
|
|
265
|
+
try {
|
|
266
|
+
const result = await client.chat.completions({
|
|
267
|
+
model: 'gpt-4o',
|
|
268
|
+
messages: [{ role: 'user', content: 'Hello' }],
|
|
269
|
+
});
|
|
270
|
+
} catch (error) {
|
|
271
|
+
if (error instanceof AnyFastError) {
|
|
272
|
+
console.error('Status:', error.status);
|
|
273
|
+
console.error('Code:', error.code);
|
|
274
|
+
console.error('Message:', error.message);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
## License
|
|
280
|
+
|
|
281
|
+
Apache License 2.0
|
package/dist/asset.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AnyFast } from './client';
|
|
2
|
+
import { CreateAssetGroupRequest, ListAssetGroupsRequest, ListAssetGroupsResponse, CreateAssetRequest, ListAssetsRequest, ListAssetsResponse } from './types';
|
|
3
|
+
export declare class Asset {
|
|
4
|
+
private client;
|
|
5
|
+
constructor(client: AnyFast);
|
|
6
|
+
createGroup(options: CreateAssetGroupRequest): Promise<{
|
|
7
|
+
Id: string;
|
|
8
|
+
}>;
|
|
9
|
+
listGroups(options?: ListAssetGroupsRequest): Promise<ListAssetGroupsResponse>;
|
|
10
|
+
createAsset(options: CreateAssetRequest): Promise<{
|
|
11
|
+
Id: string;
|
|
12
|
+
}>;
|
|
13
|
+
listAssets(options?: ListAssetsRequest): Promise<ListAssetsResponse>;
|
|
14
|
+
}
|
package/dist/asset.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Asset = void 0;
|
|
4
|
+
const DEFAULT_MODEL = 'volc-asset';
|
|
5
|
+
class Asset {
|
|
6
|
+
constructor(client) {
|
|
7
|
+
this.client = client;
|
|
8
|
+
}
|
|
9
|
+
async createGroup(options) {
|
|
10
|
+
return this.client.post('/volc/asset/CreateAssetGroup', {
|
|
11
|
+
model: DEFAULT_MODEL,
|
|
12
|
+
...options,
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
async listGroups(options = {}) {
|
|
16
|
+
return this.client.post('/volc/asset/ListAssetGroups', {
|
|
17
|
+
model: DEFAULT_MODEL,
|
|
18
|
+
...options,
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
async createAsset(options) {
|
|
22
|
+
return this.client.post('/volc/asset/CreateAsset', {
|
|
23
|
+
model: DEFAULT_MODEL,
|
|
24
|
+
...options,
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
async listAssets(options = {}) {
|
|
28
|
+
return this.client.post('/volc/asset/ListAssets', {
|
|
29
|
+
model: DEFAULT_MODEL,
|
|
30
|
+
...options,
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.Asset = Asset;
|
package/dist/chat.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { AnyFast } from './client';
|
|
2
|
+
import { ChatCompletionRequest, ChatCompletionResponse, ChatCompletionChunk, AnthropicMessagesRequest, AnthropicMessagesResponse, ResponsesRequest, ResponsesResponse, GeminiGenerateContentRequest, GeminiGenerateContentResponse, SSEEvent } from './types';
|
|
3
|
+
export declare class Chat {
|
|
4
|
+
private client;
|
|
5
|
+
constructor(client: AnyFast);
|
|
6
|
+
completions(options: ChatCompletionRequest & {
|
|
7
|
+
stream: true;
|
|
8
|
+
}): Promise<AsyncIterable<ChatCompletionChunk>>;
|
|
9
|
+
completions(options: ChatCompletionRequest & {
|
|
10
|
+
stream?: false;
|
|
11
|
+
}): Promise<ChatCompletionResponse>;
|
|
12
|
+
completions(options: ChatCompletionRequest): Promise<ChatCompletionResponse | AsyncIterable<ChatCompletionChunk>>;
|
|
13
|
+
messages(options: AnthropicMessagesRequest & {
|
|
14
|
+
stream: true;
|
|
15
|
+
}): Promise<AsyncIterable<SSEEvent>>;
|
|
16
|
+
messages(options: AnthropicMessagesRequest & {
|
|
17
|
+
stream?: false;
|
|
18
|
+
}): Promise<AnthropicMessagesResponse>;
|
|
19
|
+
messages(options: AnthropicMessagesRequest): Promise<AnthropicMessagesResponse | AsyncIterable<SSEEvent>>;
|
|
20
|
+
responses(options: ResponsesRequest & {
|
|
21
|
+
stream: true;
|
|
22
|
+
}): Promise<AsyncIterable<SSEEvent>>;
|
|
23
|
+
responses(options: ResponsesRequest & {
|
|
24
|
+
stream?: false;
|
|
25
|
+
}): Promise<ResponsesResponse>;
|
|
26
|
+
responses(options: ResponsesRequest): Promise<ResponsesResponse | AsyncIterable<SSEEvent>>;
|
|
27
|
+
gemini(model: string, options: GeminiGenerateContentRequest & {
|
|
28
|
+
stream: true;
|
|
29
|
+
}): Promise<AsyncIterable<SSEEvent>>;
|
|
30
|
+
gemini(model: string, options: GeminiGenerateContentRequest & {
|
|
31
|
+
stream?: false;
|
|
32
|
+
}): Promise<GeminiGenerateContentResponse>;
|
|
33
|
+
gemini(model: string, options: GeminiGenerateContentRequest): Promise<GeminiGenerateContentResponse | AsyncIterable<SSEEvent>>;
|
|
34
|
+
private streamChunks;
|
|
35
|
+
}
|
package/dist/chat.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Chat = void 0;
|
|
4
|
+
const sse_parser_1 = require("./sse-parser");
|
|
5
|
+
class Chat {
|
|
6
|
+
constructor(client) {
|
|
7
|
+
this.client = client;
|
|
8
|
+
}
|
|
9
|
+
async completions(options) {
|
|
10
|
+
if (options.stream) {
|
|
11
|
+
const response = await this.client.makeStreamingRequest('/v1/chat/completions', {
|
|
12
|
+
method: 'POST',
|
|
13
|
+
body: options,
|
|
14
|
+
});
|
|
15
|
+
return this.streamChunks(response.body);
|
|
16
|
+
}
|
|
17
|
+
return this.client.post('/v1/chat/completions', options);
|
|
18
|
+
}
|
|
19
|
+
async messages(options) {
|
|
20
|
+
if (options.stream) {
|
|
21
|
+
const response = await this.client.makeStreamingRequest('/v1/messages', {
|
|
22
|
+
method: 'POST',
|
|
23
|
+
body: options,
|
|
24
|
+
});
|
|
25
|
+
return (0, sse_parser_1.parseSSE)(response.body);
|
|
26
|
+
}
|
|
27
|
+
return this.client.post('/v1/messages', options);
|
|
28
|
+
}
|
|
29
|
+
async responses(options) {
|
|
30
|
+
if (options.stream) {
|
|
31
|
+
const response = await this.client.makeStreamingRequest('/v1/responses', {
|
|
32
|
+
method: 'POST',
|
|
33
|
+
body: options,
|
|
34
|
+
});
|
|
35
|
+
return (0, sse_parser_1.parseSSE)(response.body);
|
|
36
|
+
}
|
|
37
|
+
return this.client.post('/v1/responses', options);
|
|
38
|
+
}
|
|
39
|
+
async gemini(model, options) {
|
|
40
|
+
const { stream, ...body } = options;
|
|
41
|
+
const action = stream ? 'streamGenerateContent' : 'generateContent';
|
|
42
|
+
const endpoint = `/v1beta/models/${model}:${action}`;
|
|
43
|
+
if (stream) {
|
|
44
|
+
const response = await this.client.makeStreamingRequest(endpoint, {
|
|
45
|
+
method: 'POST',
|
|
46
|
+
body,
|
|
47
|
+
});
|
|
48
|
+
return (0, sse_parser_1.parseSSE)(response.body);
|
|
49
|
+
}
|
|
50
|
+
return this.client.post(endpoint, body);
|
|
51
|
+
}
|
|
52
|
+
async *streamChunks(body) {
|
|
53
|
+
for await (const event of (0, sse_parser_1.parseSSE)(body)) {
|
|
54
|
+
try {
|
|
55
|
+
yield JSON.parse(event.data);
|
|
56
|
+
}
|
|
57
|
+
catch {
|
|
58
|
+
// Skip non-JSON events
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.Chat = Chat;
|
package/dist/client.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { Response } from 'node-fetch';
|
|
2
|
+
import { AnyFastOptions } from './types';
|
|
3
|
+
import { Chat } from './chat';
|
|
4
|
+
import { Image } from './image';
|
|
5
|
+
import { Video } from './video';
|
|
6
|
+
import { Asset } from './asset';
|
|
7
|
+
import { File } from './file';
|
|
8
|
+
export declare class AnyFast {
|
|
9
|
+
readonly apiKey: string;
|
|
10
|
+
readonly baseURL: string;
|
|
11
|
+
readonly gatewayURL: string;
|
|
12
|
+
readonly timeout: number;
|
|
13
|
+
readonly chat: Chat;
|
|
14
|
+
readonly image: Image;
|
|
15
|
+
readonly video: Video;
|
|
16
|
+
readonly asset: Asset;
|
|
17
|
+
readonly file: File;
|
|
18
|
+
constructor(options?: AnyFastOptions);
|
|
19
|
+
makeRequest(endpoint: string, options?: any): Promise<any>;
|
|
20
|
+
makeStreamingRequest(endpoint: string, options?: any): Promise<Response>;
|
|
21
|
+
makeGatewayRequest(endpoint: string, options?: any): Promise<any>;
|
|
22
|
+
post(endpoint: string, body: any): Promise<any>;
|
|
23
|
+
get(endpoint: string): Promise<any>;
|
|
24
|
+
loadFromLocal(filePath: string): string;
|
|
25
|
+
static getMimeType(filePath: string): string;
|
|
26
|
+
}
|