-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 988 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "ts-ai-agent",
"version": "0.1.7",
"description": "A TypeScript library for constructing and utilizing AI agents with OpenAI's API, enabling the chaining of multiple requests and responses using RxJS, and generating runtime type information for the 'function_call' feature.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist.esm/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "ttsc -b",
"docs": "typedoc"
},
"keywords": [
"openai",
"ai",
"agent",
"typescript",
"artificial-intelligence",
"machine-learning",
"api",
"ts-rtti",
"runtime-type-information",
"function-call",
"gpt-3.5-turbo-0613",
"gpt-4-0613"
],
"dependencies": {
"openai": "^3.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"typescript-rtti": "^0.8.3"
},
"devDependencies": {
"ttypescript": "^1.5.15"
},
"author": "x0rb0t",
"license": "MIT"
}