@gpt-core/client 0.9.12 → 0.9.14
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/dist/index.d.mts +1514 -11406
- package/dist/index.d.ts +1514 -11406
- package/dist/index.js +737 -0
- package/dist/index.mjs +737 -0
- package/llms.txt +21 -6
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -22,10 +22,23 @@ client.setConfig({
|
|
|
22
22
|
});
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
## Agent stats
|
|
26
|
+
|
|
27
|
+
- `getAgentsByIdStats()` - Get stats
|
|
28
|
+
|
|
25
29
|
## Agent test result
|
|
26
30
|
|
|
27
31
|
- `postAgentTestResults()` - Create agent test results
|
|
28
32
|
|
|
33
|
+
## Agent training stats
|
|
34
|
+
|
|
35
|
+
- `getAgentsByIdTrainingStats()` - Get training stats
|
|
36
|
+
|
|
37
|
+
## Agent usage
|
|
38
|
+
|
|
39
|
+
- `getAgentsByIdUsage()` - Get usage
|
|
40
|
+
- `getAgentsUsage()` - List usage
|
|
41
|
+
|
|
29
42
|
## Agent version comparison
|
|
30
43
|
|
|
31
44
|
- `postAgentVersionComparisons()` - Create agent version comparisons
|
|
@@ -35,10 +48,6 @@ client.setConfig({
|
|
|
35
48
|
- `getAgents()` - List agents
|
|
36
49
|
- `getAgentsById()` - Get agents
|
|
37
50
|
- `getAgentsByIdSchemaVersions()` - Get schema versions
|
|
38
|
-
- `getAgentsByIdStats()` - Get stats
|
|
39
|
-
- `getAgentsByIdTrainingStats()` - Get training stats
|
|
40
|
-
- `getAgentsByIdUsage()` - Get usage
|
|
41
|
-
- `getAgentsUsage()` - List usage
|
|
42
51
|
- `getAgentVersions()` - List agent versions
|
|
43
52
|
- `getAgentVersionsById()` - Get agent versions
|
|
44
53
|
- `getAgentVersionsByIdMetrics()` - Get metrics
|
|
@@ -431,13 +440,19 @@ client.setConfig({
|
|
|
431
440
|
- `patchTenantsById()` - Update tenants
|
|
432
441
|
- `deleteTenantsById()` - Delete tenants
|
|
433
442
|
|
|
443
|
+
## Thread stats
|
|
444
|
+
|
|
445
|
+
- `getThreadsStats()` - List stats
|
|
446
|
+
|
|
447
|
+
## Thread workspace stats
|
|
448
|
+
|
|
449
|
+
- `getThreadsWorkspace-stats()` - List workspace stats
|
|
450
|
+
|
|
434
451
|
## Threads
|
|
435
452
|
|
|
436
453
|
- `getThreads()` - List threads
|
|
437
454
|
- `getThreadsById()` - Get threads
|
|
438
455
|
- `getThreadsSearch()` - List search
|
|
439
|
-
- `getThreadsStats()` - List stats
|
|
440
|
-
- `getThreadsWorkspace-stats()` - List workspace stats
|
|
441
456
|
- `postThreads()` - Create threads
|
|
442
457
|
- `postThreadsActive()` - Create active
|
|
443
458
|
- `postThreadsByIdExport()` - Create export
|
package/package.json
CHANGED