@dominusnode/openai-functions 1.0.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 +272 -0
- package/dist/handler.d.ts +80 -0
- package/dist/handler.js +1069 -0
- package/functions.json +419 -0
- package/package.json +39 -0
package/functions.json
ADDED
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "dominusnode_proxied_fetch",
|
|
4
|
+
"description": "Make an HTTP request through DomiNode's rotating proxy network. Routes traffic through datacenter ($3/GB) or residential ($5/GB) proxies with optional geo-targeting. Useful for accessing geo-restricted content, avoiding IP blocks, or web scraping. Private/internal IPs and sanctioned countries (CU, IR, KP, RU, SY) are blocked.",
|
|
5
|
+
"parameters": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"url": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "The URL to fetch. Must be http:// or https://. Private/internal IPs (10.x, 172.16-31.x, 192.168.x, 127.x, localhost) and non-standard IP representations (hex, octal, decimal) are blocked for SSRF prevention."
|
|
11
|
+
},
|
|
12
|
+
"method": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"enum": ["GET", "HEAD", "OPTIONS"],
|
|
15
|
+
"default": "GET",
|
|
16
|
+
"description": "HTTP method to use for the request. Only read-only methods (GET, HEAD, OPTIONS) are permitted."
|
|
17
|
+
},
|
|
18
|
+
"country": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Two-letter ISO 3166-1 alpha-2 country code for geo-targeting (e.g., 'US', 'GB', 'DE', 'JP'). Supported countries: US, GB, DE, FR, JP, BR, AU, CA, IN, NL, SG, KR. Sanctioned countries (CU, IR, KP, RU, SY) are blocked."
|
|
21
|
+
},
|
|
22
|
+
"proxy_type": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"enum": ["dc", "residential"],
|
|
25
|
+
"default": "dc",
|
|
26
|
+
"description": "Proxy type: 'dc' (datacenter, $3/GB, fastest, suitable for most scraping) or 'residential' ($5/GB, uses real ISP IPs, hardest to detect/block)."
|
|
27
|
+
},
|
|
28
|
+
"headers": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"description": "Optional HTTP headers as key-value pairs. Security-sensitive headers (Host, Connection, Content-Length, Transfer-Encoding, Proxy-Authorization, Authorization, User-Agent) are stripped to prevent injection.",
|
|
31
|
+
"additionalProperties": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"required": ["url"]
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "dominusnode_check_balance",
|
|
41
|
+
"description": "Check the current wallet balance for the authenticated DomiNode account. Returns balance in cents and USD, currency, and last top-up timestamp. The wallet uses a prepaid model -- top up first, then usage is debited automatically.",
|
|
42
|
+
"parameters": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"properties": {},
|
|
45
|
+
"required": []
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "dominusnode_check_usage",
|
|
50
|
+
"description": "Check proxy usage statistics for the authenticated DomiNode account. Returns total bytes transferred, total cost, and request count for the specified period. Useful for monitoring bandwidth consumption and spending.",
|
|
51
|
+
"parameters": {
|
|
52
|
+
"type": "object",
|
|
53
|
+
"properties": {
|
|
54
|
+
"period": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"enum": ["day", "week", "month"],
|
|
57
|
+
"default": "month",
|
|
58
|
+
"description": "Time period to query: 'day' (last 24 hours), 'week' (last 7 days), or 'month' (last 30 days)."
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"required": []
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "dominusnode_get_proxy_config",
|
|
66
|
+
"description": "Get DomiNode proxy endpoint configuration and supported features. Returns HTTP and SOCKS5 proxy connection details, list of supported countries for geo-targeting, blocked/sanctioned countries, and geo-targeting capabilities. Use this to discover available proxy endpoints before making proxied requests.",
|
|
67
|
+
"parameters": {
|
|
68
|
+
"type": "object",
|
|
69
|
+
"properties": {},
|
|
70
|
+
"required": []
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "dominusnode_list_sessions",
|
|
75
|
+
"description": "List all currently active proxy sessions for the authenticated DomiNode account. Returns session IDs, start times, and status. Useful for monitoring concurrent connections and debugging active proxy usage.",
|
|
76
|
+
"parameters": {
|
|
77
|
+
"type": "object",
|
|
78
|
+
"properties": {},
|
|
79
|
+
"required": []
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "dominusnode_create_agentic_wallet",
|
|
84
|
+
"description": "Create a new agentic wallet (sub-wallet) for an AI agent. Agentic wallets are server-side custodial sub-wallets with per-transaction spending limits, funded from the main wallet. They allow you to give AI agents controlled access to proxy bandwidth without exposing the main wallet. Maximum balance per agentic wallet is $10,000.00 (1,000,000 cents).",
|
|
85
|
+
"parameters": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"properties": {
|
|
88
|
+
"label": {
|
|
89
|
+
"type": "string",
|
|
90
|
+
"description": "Human-readable label for the agentic wallet (e.g., 'scraper-bot-1', 'research-agent'). Used for identification in listings and logs. Max 100 characters, alphanumeric with hyphens and underscores.",
|
|
91
|
+
"maxLength": 100
|
|
92
|
+
},
|
|
93
|
+
"spending_limit_cents": {
|
|
94
|
+
"type": "integer",
|
|
95
|
+
"description": "Per-transaction spending limit in cents. Controls the maximum amount that can be debited in a single proxy session. Must be a positive integer <= 2,147,483,647. Example: 500 = $5.00 limit per transaction.",
|
|
96
|
+
"minimum": 1,
|
|
97
|
+
"maximum": 2147483647
|
|
98
|
+
},
|
|
99
|
+
"daily_limit_cents": {
|
|
100
|
+
"type": "integer",
|
|
101
|
+
"description": "Optional daily spending budget in cents (resets midnight UTC). If set, agent cannot spend more than this per day.",
|
|
102
|
+
"minimum": 1,
|
|
103
|
+
"maximum": 1000000
|
|
104
|
+
},
|
|
105
|
+
"allowed_domains": {
|
|
106
|
+
"type": "array",
|
|
107
|
+
"description": "Optional list of allowed target domains. When set, proxy requests to unlisted domains are rejected.",
|
|
108
|
+
"items": { "type": "string", "maxLength": 253 },
|
|
109
|
+
"maxItems": 100
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"required": ["label", "spending_limit_cents"]
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "dominusnode_fund_agentic_wallet",
|
|
117
|
+
"description": "Fund an agentic wallet by transferring balance from the main wallet. The amount is debited from your main wallet and credited to the specified agentic wallet. Maximum agentic wallet balance is $10,000.00 (1,000,000 cents). Main wallet must have sufficient balance.",
|
|
118
|
+
"parameters": {
|
|
119
|
+
"type": "object",
|
|
120
|
+
"properties": {
|
|
121
|
+
"wallet_id": {
|
|
122
|
+
"type": "string",
|
|
123
|
+
"description": "The UUID of the agentic wallet to fund. Obtain this from dominusnode_create_agentic_wallet or by listing agentic wallets."
|
|
124
|
+
},
|
|
125
|
+
"amount_cents": {
|
|
126
|
+
"type": "integer",
|
|
127
|
+
"description": "Amount to transfer in cents. Must be a positive integer <= 2,147,483,647. Example: 1000 = $10.00. The agentic wallet's resulting balance cannot exceed $10,000.00 (1,000,000 cents).",
|
|
128
|
+
"minimum": 1,
|
|
129
|
+
"maximum": 2147483647
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"required": ["wallet_id", "amount_cents"]
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "dominusnode_agentic_wallet_balance",
|
|
137
|
+
"description": "Check the balance and details of a specific agentic wallet. Returns the wallet ID, label, balance in cents, spending limit, status (active/frozen), and creation timestamp.",
|
|
138
|
+
"parameters": {
|
|
139
|
+
"type": "object",
|
|
140
|
+
"properties": {
|
|
141
|
+
"wallet_id": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"description": "The UUID of the agentic wallet to query. Obtain this from dominusnode_create_agentic_wallet or by listing agentic wallets."
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"required": ["wallet_id"]
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "dominusnode_create_team",
|
|
151
|
+
"description": "Create a new team for shared proxy billing. Teams have a shared wallet and can have multiple members with different roles (owner, admin, member). Team API keys bill against the team wallet. Requires email verification.",
|
|
152
|
+
"parameters": {
|
|
153
|
+
"type": "object",
|
|
154
|
+
"properties": {
|
|
155
|
+
"name": {
|
|
156
|
+
"type": "string",
|
|
157
|
+
"description": "Team name (1-100 characters).",
|
|
158
|
+
"minLength": 1,
|
|
159
|
+
"maxLength": 100
|
|
160
|
+
},
|
|
161
|
+
"max_members": {
|
|
162
|
+
"type": "integer",
|
|
163
|
+
"description": "Optional maximum number of team members (1-100). Leave unset for no limit.",
|
|
164
|
+
"minimum": 1,
|
|
165
|
+
"maximum": 100
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"required": ["name"]
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "dominusnode_list_teams",
|
|
173
|
+
"description": "List all teams you belong to, including your role in each team, the team balance, and member count. Returns teams where you are owner, admin, or member.",
|
|
174
|
+
"parameters": {
|
|
175
|
+
"type": "object",
|
|
176
|
+
"properties": {},
|
|
177
|
+
"required": []
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "dominusnode_team_details",
|
|
182
|
+
"description": "Get detailed information about a specific team including balance, member count, settings, and your role. Requires team membership.",
|
|
183
|
+
"parameters": {
|
|
184
|
+
"type": "object",
|
|
185
|
+
"properties": {
|
|
186
|
+
"team_id": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"description": "The UUID of the team to query."
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"required": ["team_id"]
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "dominusnode_team_fund",
|
|
196
|
+
"description": "Transfer funds from your personal wallet to a team wallet. Minimum $1 (100 cents), maximum $10,000 (1,000,000 cents). Only team owners and admins can fund. Requires email verification.",
|
|
197
|
+
"parameters": {
|
|
198
|
+
"type": "object",
|
|
199
|
+
"properties": {
|
|
200
|
+
"team_id": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"description": "The UUID of the team to fund."
|
|
203
|
+
},
|
|
204
|
+
"amount_cents": {
|
|
205
|
+
"type": "integer",
|
|
206
|
+
"description": "Amount to transfer in cents. Min 100 ($1), max 1,000,000 ($10,000).",
|
|
207
|
+
"minimum": 100,
|
|
208
|
+
"maximum": 1000000
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"required": ["team_id", "amount_cents"]
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "dominusnode_team_create_key",
|
|
216
|
+
"description": "Create a shared API key for a team. All proxy usage with this key bills against the team wallet. Only team owners and admins can create keys. The full key is shown only once. Requires email verification.",
|
|
217
|
+
"parameters": {
|
|
218
|
+
"type": "object",
|
|
219
|
+
"properties": {
|
|
220
|
+
"team_id": {
|
|
221
|
+
"type": "string",
|
|
222
|
+
"description": "The UUID of the team."
|
|
223
|
+
},
|
|
224
|
+
"label": {
|
|
225
|
+
"type": "string",
|
|
226
|
+
"description": "Descriptive label for the API key (e.g., 'production', 'staging'). Max 100 characters.",
|
|
227
|
+
"minLength": 1,
|
|
228
|
+
"maxLength": 100
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"required": ["team_id", "label"]
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "dominusnode_team_usage",
|
|
236
|
+
"description": "Get the team wallet transaction history including funding, proxy usage charges, and refunds. Requires team membership.",
|
|
237
|
+
"parameters": {
|
|
238
|
+
"type": "object",
|
|
239
|
+
"properties": {
|
|
240
|
+
"team_id": {
|
|
241
|
+
"type": "string",
|
|
242
|
+
"description": "The UUID of the team."
|
|
243
|
+
},
|
|
244
|
+
"limit": {
|
|
245
|
+
"type": "integer",
|
|
246
|
+
"description": "Number of transactions to return (1-100, default 20).",
|
|
247
|
+
"minimum": 1,
|
|
248
|
+
"maximum": 100,
|
|
249
|
+
"default": 20
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"required": ["team_id"]
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "dominusnode_list_agentic_wallets",
|
|
257
|
+
"description": "List all agentic wallets (sub-wallets) associated with your account. Returns wallet IDs, labels, balances, spending limits, and status (active/frozen) for each.",
|
|
258
|
+
"parameters": {
|
|
259
|
+
"type": "object",
|
|
260
|
+
"properties": {},
|
|
261
|
+
"required": []
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "dominusnode_agentic_transactions",
|
|
266
|
+
"description": "Get transaction history for a specific agentic wallet. Shows funding, proxy usage charges, and refunds.",
|
|
267
|
+
"parameters": {
|
|
268
|
+
"type": "object",
|
|
269
|
+
"properties": {
|
|
270
|
+
"wallet_id": {
|
|
271
|
+
"type": "string",
|
|
272
|
+
"description": "The UUID of the agentic wallet to query."
|
|
273
|
+
},
|
|
274
|
+
"limit": {
|
|
275
|
+
"type": "integer",
|
|
276
|
+
"description": "Number of transactions to return (1-100, default 20).",
|
|
277
|
+
"minimum": 1,
|
|
278
|
+
"maximum": 100,
|
|
279
|
+
"default": 20
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"required": ["wallet_id"]
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": "dominusnode_freeze_agentic_wallet",
|
|
287
|
+
"description": "Freeze an agentic wallet to temporarily disable it. Frozen wallets cannot be used for proxy billing until unfrozen. The balance is preserved. Useful for pausing an agent's spending.",
|
|
288
|
+
"parameters": {
|
|
289
|
+
"type": "object",
|
|
290
|
+
"properties": {
|
|
291
|
+
"wallet_id": {
|
|
292
|
+
"type": "string",
|
|
293
|
+
"description": "The UUID of the agentic wallet to freeze."
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"required": ["wallet_id"]
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"name": "dominusnode_unfreeze_agentic_wallet",
|
|
301
|
+
"description": "Unfreeze a previously frozen agentic wallet to re-enable it for proxy billing. The balance and spending limit are preserved.",
|
|
302
|
+
"parameters": {
|
|
303
|
+
"type": "object",
|
|
304
|
+
"properties": {
|
|
305
|
+
"wallet_id": {
|
|
306
|
+
"type": "string",
|
|
307
|
+
"description": "The UUID of the agentic wallet to unfreeze."
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"required": ["wallet_id"]
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"name": "dominusnode_delete_agentic_wallet",
|
|
315
|
+
"description": "Delete an agentic wallet permanently. Any remaining balance is automatically refunded to the main wallet. Cannot delete frozen wallets (unfreeze first). Transaction history is removed.",
|
|
316
|
+
"parameters": {
|
|
317
|
+
"type": "object",
|
|
318
|
+
"properties": {
|
|
319
|
+
"wallet_id": {
|
|
320
|
+
"type": "string",
|
|
321
|
+
"description": "The UUID of the agentic wallet to delete."
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"required": ["wallet_id"]
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "dominusnode_update_wallet_policy",
|
|
329
|
+
"description": "Update spending policy for an agentic wallet (daily limit and/or domain allowlist).",
|
|
330
|
+
"parameters": {
|
|
331
|
+
"type": "object",
|
|
332
|
+
"properties": {
|
|
333
|
+
"wallet_id": {
|
|
334
|
+
"type": "string",
|
|
335
|
+
"description": "Agentic wallet UUID",
|
|
336
|
+
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
|
|
337
|
+
},
|
|
338
|
+
"daily_limit_cents": {
|
|
339
|
+
"type": ["integer", "null"],
|
|
340
|
+
"description": "Daily budget in cents (null to remove)",
|
|
341
|
+
"minimum": 1,
|
|
342
|
+
"maximum": 1000000
|
|
343
|
+
},
|
|
344
|
+
"allowed_domains": {
|
|
345
|
+
"type": ["array", "null"],
|
|
346
|
+
"description": "Domain allowlist (null to remove)",
|
|
347
|
+
"items": { "type": "string", "maxLength": 253 },
|
|
348
|
+
"maxItems": 100
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
"required": ["wallet_id"]
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "dominusnode_update_team",
|
|
356
|
+
"description": "Update a team's settings. Only team owners and admins can update. You can change the team name and/or maximum member count.",
|
|
357
|
+
"parameters": {
|
|
358
|
+
"type": "object",
|
|
359
|
+
"properties": {
|
|
360
|
+
"team_id": {
|
|
361
|
+
"type": "string",
|
|
362
|
+
"description": "The UUID of the team to update."
|
|
363
|
+
},
|
|
364
|
+
"name": {
|
|
365
|
+
"type": "string",
|
|
366
|
+
"description": "New team name (1-100 characters). Optional — omit to keep current name.",
|
|
367
|
+
"minLength": 1,
|
|
368
|
+
"maxLength": 100
|
|
369
|
+
},
|
|
370
|
+
"max_members": {
|
|
371
|
+
"type": "integer",
|
|
372
|
+
"description": "New maximum number of team members (1-100). Optional — omit to keep current limit.",
|
|
373
|
+
"minimum": 1,
|
|
374
|
+
"maximum": 100
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"required": ["team_id"]
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "dominusnode_update_team_member_role",
|
|
382
|
+
"description": "Update a team member's role. Only team owners and admins can change roles. Cannot change the owner's role. Valid roles are 'member' and 'admin'.",
|
|
383
|
+
"parameters": {
|
|
384
|
+
"type": "object",
|
|
385
|
+
"properties": {
|
|
386
|
+
"team_id": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"description": "The UUID of the team."
|
|
389
|
+
},
|
|
390
|
+
"user_id": {
|
|
391
|
+
"type": "string",
|
|
392
|
+
"description": "The UUID of the team member whose role to change."
|
|
393
|
+
},
|
|
394
|
+
"role": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"enum": ["member", "admin"],
|
|
397
|
+
"description": "The new role for the team member."
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"required": ["team_id", "user_id", "role"]
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "dominusnode_topup_paypal",
|
|
405
|
+
"description": "Create a PayPal payment order to top up your DomiNode wallet. Returns an approval URL where you complete the payment. After approval, the wallet is credited automatically. Lower fees than Stripe for PayPal users. Minimum $5 (500 cents), maximum $1,000 (100,000 cents).",
|
|
406
|
+
"parameters": {
|
|
407
|
+
"type": "object",
|
|
408
|
+
"properties": {
|
|
409
|
+
"amount_cents": {
|
|
410
|
+
"type": "integer",
|
|
411
|
+
"description": "Amount in cents to add to wallet. Minimum 500 ($5.00), maximum 100000 ($1,000.00).",
|
|
412
|
+
"minimum": 500,
|
|
413
|
+
"maximum": 100000
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
"required": ["amount_cents"]
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
]
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dominusnode/openai-functions",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "DomiNode OpenAI-compatible function calling handler — dispatches LLM function calls to the DomiNode REST API",
|
|
5
|
+
"main": "dist/handler.js",
|
|
6
|
+
"types": "dist/handler.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"test": "vitest run",
|
|
12
|
+
"test:py": "python -m pytest test_handler.py -v"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"typescript": "^5.4.0",
|
|
16
|
+
"vitest": "^1.6.0"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"openai",
|
|
20
|
+
"function-calling",
|
|
21
|
+
"dominusnode",
|
|
22
|
+
"proxy",
|
|
23
|
+
"llm",
|
|
24
|
+
"ai"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/Dominus-Node/dominusnode"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18.0.0"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist/",
|
|
35
|
+
"functions.json",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
]
|
|
39
|
+
}
|