@gpt-platform/client 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 +609 -0
- package/dist/index.d.mts +11370 -0
- package/dist/index.d.ts +11370 -0
- package/dist/index.js +10437 -0
- package/dist/index.mjs +10290 -0
- package/llms.txt +981 -0
- package/package.json +89 -0
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gpt-platform/client",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "TypeScript SDK for GPT Platform Client API - Document extraction, AI agents, and workspace management",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
|
+
"default": "./dist/index.mjs"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18.0.0"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"llms.txt"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [
|
|
29
|
+
"gpt-platform",
|
|
30
|
+
"client",
|
|
31
|
+
"sdk",
|
|
32
|
+
"typescript",
|
|
33
|
+
"api-client",
|
|
34
|
+
"document-extraction",
|
|
35
|
+
"ai-agents",
|
|
36
|
+
"llm",
|
|
37
|
+
"ai-integration",
|
|
38
|
+
"openapi",
|
|
39
|
+
"json-api",
|
|
40
|
+
"workspace-management",
|
|
41
|
+
"semantic-search",
|
|
42
|
+
"embeddings",
|
|
43
|
+
"rag"
|
|
44
|
+
],
|
|
45
|
+
"author": "GPT Integrators",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "git+https://github.com/GPT-Integrators/gpt-core.git",
|
|
50
|
+
"directory": "sdks/ts/packages/client"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://gpt-integrators.github.io/gpt-platform-client-sdk",
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"generate": "bunx openapi-ts",
|
|
58
|
+
"typecheck": "bunx tsc --noEmit",
|
|
59
|
+
"build": "bun run typecheck && bunx tsup src/index.ts --format cjs,esm --dts",
|
|
60
|
+
"test": "bunx vitest run --exclude '**/*.integration.test.ts'",
|
|
61
|
+
"test:unit": "bunx vitest run --exclude '**/*.integration.test.ts'",
|
|
62
|
+
"test:integration": "bunx vitest run --dir src/__tests__/integration",
|
|
63
|
+
"test:integration:extraction": "bunx vitest run src/__tests__/integration/extraction.integration.test.ts",
|
|
64
|
+
"test:integration:agents": "bunx vitest run src/__tests__/integration/agents.integration.test.ts",
|
|
65
|
+
"test:integration:auth": "bunx vitest run src/__tests__/integration/auth.integration.test.ts",
|
|
66
|
+
"test:integration:platform": "bunx vitest run src/__tests__/integration/platform.integration.test.ts",
|
|
67
|
+
"test:integration:identity": "bunx vitest run src/__tests__/integration/identity.integration.test.ts",
|
|
68
|
+
"test:integration:pagination": "bunx vitest run src/__tests__/integration/pagination.integration.test.ts",
|
|
69
|
+
"test:integration:api-versioning": "bunx vitest run src/__tests__/integration/api-versioning.integration.test.ts",
|
|
70
|
+
"test:integration:rate-limiting": "bunx vitest run src/__tests__/integration/rate-limiting.integration.test.ts",
|
|
71
|
+
"test:integration:search": "bunx vitest run src/__tests__/integration/search.integration.test.ts",
|
|
72
|
+
"test:integration:storage": "bunx vitest run src/__tests__/integration/storage.integration.test.ts",
|
|
73
|
+
"test:integration:streaming": "bunx vitest run src/__tests__/integration/streaming.integration.test.ts",
|
|
74
|
+
"test:watch": "bunx vitest",
|
|
75
|
+
"test:ui": "bunx vitest --ui",
|
|
76
|
+
"test:coverage": "bunx vitest run --coverage"
|
|
77
|
+
},
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"zod": "^3.25.76"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@hey-api/openapi-ts": "^0.88.1",
|
|
83
|
+
"@vitest/ui": "^4.0.15",
|
|
84
|
+
"msw": "^2.12.4",
|
|
85
|
+
"tsup": "^8.5.1",
|
|
86
|
+
"typescript": "^5.9.3",
|
|
87
|
+
"vitest": "^4.0.15"
|
|
88
|
+
}
|
|
89
|
+
}
|