@pouchy_ai/admin-sdk 0.16.1 → 0.17.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/CHANGELOG.md +55 -0
- package/README.md +38 -0
- package/dist/index.d.ts +44 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,61 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@pouchy_ai/admin-sdk` are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.17.0 — 2026-08-07
|
|
6
|
+
|
|
7
|
+
- **New `extractJson()` — structured JSON output, outside the companion.**
|
|
8
|
+
`POST /v1/admin/utility/json`. Additive; nothing else changed.
|
|
9
|
+
|
|
10
|
+
This exists because using a companion agent for extraction does not work, and
|
|
11
|
+
did not fail in a way that explained itself. A companion turn is a
|
|
12
|
+
conversation engine — persona prompt, memory recall, tools — and when the
|
|
13
|
+
model returns an empty completion it answers with a natural-language fallback
|
|
14
|
+
line rather than shipping an empty bubble. Correct for a chat surface, wrong
|
|
15
|
+
for a parser. An extraction prompt reliably *reaches* that fallback, because
|
|
16
|
+
the reasoning-effort bump off the cheapest tier is gated on conversational and
|
|
17
|
+
functional cues (weather, search, wallet, social) that an extraction input
|
|
18
|
+
never matches. The result was a soft chat sentence where JSON was expected.
|
|
19
|
+
|
|
20
|
+
`extractJson()` shares none of that machinery: no persona, no memory, no
|
|
21
|
+
tools, no session, no fallback. One provider call with `response_format` set,
|
|
22
|
+
and a parsed result.
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
const { data } = await admin.extractJson<{ nickname: string | null }>({
|
|
26
|
+
content: '叫我 Alex',
|
|
27
|
+
schema: {
|
|
28
|
+
type: 'object',
|
|
29
|
+
additionalProperties: false,
|
|
30
|
+
required: ['nickname'],
|
|
31
|
+
properties: { nickname: { type: ['string', 'null'] } }
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
// → { nickname: 'Alex' }
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
- **`strict` defaults to true**, which asks the provider to ENFORCE the schema.
|
|
38
|
+
The schema must then sit inside the provider's structured-output subset: root
|
|
39
|
+
object, `additionalProperties: false`, and every property listed in
|
|
40
|
+
`required` — model an optional field as a union with `null` rather than by
|
|
41
|
+
omitting it from `required`. A schema outside the subset comes back as `400`
|
|
42
|
+
/ `code: 'schema_invalid'` carrying the provider's own reason instead of
|
|
43
|
+
failing at generation time. Pass `strict: false` to fall back to plain JSON
|
|
44
|
+
mode plus server-side validation.
|
|
45
|
+
|
|
46
|
+
- **Failures are typed, not prose.** `schema_invalid` (400 — fix the schema;
|
|
47
|
+
retrying verbatim cannot help), `unavailable` (5xx — transient, back off),
|
|
48
|
+
`invalid_json` (502 — a completion arrived but did not parse or did not
|
|
49
|
+
satisfy the schema). `invalid_json` carries `raw`, the text actually
|
|
50
|
+
returned, so the failure is debuggable rather than opaque.
|
|
51
|
+
|
|
52
|
+
- **Note on schema key names.** The companion reply path strips objects
|
|
53
|
+
matching internal memory-pipeline signatures, among them
|
|
54
|
+
`{domain, key, value, label}` and `{content, kind, importance}`. That
|
|
55
|
+
stripping does not apply to this endpoint — but if you were previously
|
|
56
|
+
extracting through a companion agent with a schema shaped like either of
|
|
57
|
+
those, a *correct* answer could be removed before you saw it. Another reason
|
|
58
|
+
to move extraction here.
|
|
59
|
+
|
|
5
60
|
## 0.16.1 — 2026-08-06
|
|
6
61
|
|
|
7
62
|
Documentation only — no type, signature or runtime change. Two doc comments
|
package/README.md
CHANGED
|
@@ -58,6 +58,44 @@ console.log(`armed — ${armed.reprovisioned} running instance(s) updated`);
|
|
|
58
58
|
// The agent can now drive the API from the skill's prose via http_request.
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
### Structured JSON — use `extractJson`, not a companion agent
|
|
62
|
+
|
|
63
|
+
```ts
|
|
64
|
+
const { data } = await admin.extractJson<{ nickname: string | null }>({
|
|
65
|
+
content: '叫我 Alex',
|
|
66
|
+
schema: {
|
|
67
|
+
type: 'object',
|
|
68
|
+
additionalProperties: false,
|
|
69
|
+
required: ['nickname'], // strict mode: EVERY property, always
|
|
70
|
+
properties: { nickname: { type: ['string', 'null'] } } // optional → union with null
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
console.log(data.nickname); // 'Alex'
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
A companion turn is a **conversation** engine — persona prompt, memory recall,
|
|
77
|
+
tools — and when the model returns an empty completion it answers with a
|
|
78
|
+
natural-language fallback line rather than an empty bubble. That is right for a
|
|
79
|
+
chat surface and wrong for a parser, and an extraction prompt reliably reaches
|
|
80
|
+
it, because the reasoning-effort bump off the cheapest tier is gated on
|
|
81
|
+
conversational/functional cues an extraction input never matches. So a companion
|
|
82
|
+
agent asked for JSON returns chat filler, fairly consistently.
|
|
83
|
+
|
|
84
|
+
`extractJson` shares none of that: no persona, no memory, no tools, no session,
|
|
85
|
+
no fallback — one provider call with `response_format` set. `strict` defaults to
|
|
86
|
+
true, which makes the provider **enforce** the schema; the schema must then sit
|
|
87
|
+
inside the provider's structured-output subset (root object,
|
|
88
|
+
`additionalProperties: false`, every property listed in `required`). Pass
|
|
89
|
+
`strict: false` for schemas outside it — you still get JSON mode plus
|
|
90
|
+
server-side validation.
|
|
91
|
+
|
|
92
|
+
Failures are typed rather than prose, so the recoveries are distinguishable:
|
|
93
|
+
`schema_invalid` (400 — fix the schema; retrying verbatim cannot help),
|
|
94
|
+
`unavailable` (5xx — transient, back off), and `invalid_json` (502 — a
|
|
95
|
+
completion arrived but did not parse or satisfy the schema; the error carries
|
|
96
|
+
`raw`, the text actually returned). Tokens roll into the project's month usage
|
|
97
|
+
like any other model call.
|
|
98
|
+
|
|
61
99
|
Every skill knob (`setSkillRate`, `setSkillDailyCap`, `grantSkill`) returns
|
|
62
100
|
`SkillKnobResult<T>` — the knob you set plus `reprovisioned` (instances the new
|
|
63
101
|
def reached) and `truncated`. A knob only binds a running agent once the def
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const ADMIN_SDK_VERSION = "0.
|
|
1
|
+
export declare const ADMIN_SDK_VERSION = "0.17.0";
|
|
2
2
|
export declare const DEFAULT_BASE_URL = "https://pouchy.ai/v1/admin";
|
|
3
3
|
/** Deadline for the routes whose server handler declares `maxDuration: 300` —
|
|
4
4
|
* the server's own ceiling plus headroom, so a client abort can only ever mean
|
|
@@ -652,6 +652,49 @@ export interface AdminClient {
|
|
|
652
652
|
mode: 'semantic' | 'lexical';
|
|
653
653
|
hits: unknown[];
|
|
654
654
|
}>;
|
|
655
|
+
/** Structured JSON extraction, OUTSIDE the companion.
|
|
656
|
+
*
|
|
657
|
+
* Use this — not a companion agent — whenever you want machine-readable
|
|
658
|
+
* output. A companion turn is a conversation engine: it carries a persona
|
|
659
|
+
* prompt, recalls memory, and when the model returns nothing it answers with
|
|
660
|
+
* a natural-language fallback line rather than dead air. That is right for a
|
|
661
|
+
* chat bubble and wrong for a parser, and an extraction prompt reliably
|
|
662
|
+
* triggers it, because the reasoning-effort bump off the cheapest tier is
|
|
663
|
+
* gated on conversational/functional cues that an extraction input does not
|
|
664
|
+
* match. This endpoint shares none of that: no persona, no memory, no tools,
|
|
665
|
+
* no session, no fallback — one provider call with `response_format` set.
|
|
666
|
+
*
|
|
667
|
+
* `strict` (default true) asks the provider to ENFORCE the schema. It must
|
|
668
|
+
* then sit inside the provider's structured-output subset: a root object,
|
|
669
|
+
* `additionalProperties: false`, and EVERY property listed in `required`
|
|
670
|
+
* (model an optional field as a union with `null`, not by omitting it from
|
|
671
|
+
* `required`). A schema outside the subset is rejected with `400` /
|
|
672
|
+
* `code: 'schema_invalid'` naming the provider's reason — pass
|
|
673
|
+
* `strict: false` to fall back to plain JSON mode plus server-side
|
|
674
|
+
* validation.
|
|
675
|
+
*
|
|
676
|
+
* Failures are typed rather than prose, which is the point:
|
|
677
|
+
* `schema_invalid` (400 — fix the schema, retrying verbatim cannot help),
|
|
678
|
+
* `unavailable` (5xx — transient, back off), `invalid_json` (502 — a
|
|
679
|
+
* completion arrived but did not parse or did not satisfy the schema; the
|
|
680
|
+
* error carries `raw`, the text actually returned).
|
|
681
|
+
*
|
|
682
|
+
* Tokens roll into the project's month usage like any other model call. */
|
|
683
|
+
extractJson<T = unknown>(input: {
|
|
684
|
+
schema: Record<string, unknown>;
|
|
685
|
+
content: string;
|
|
686
|
+
system?: string;
|
|
687
|
+
strict?: boolean;
|
|
688
|
+
model?: string;
|
|
689
|
+
schemaName?: string;
|
|
690
|
+
}): Promise<{
|
|
691
|
+
data: T;
|
|
692
|
+
raw: string;
|
|
693
|
+
usage?: {
|
|
694
|
+
promptTokens: number;
|
|
695
|
+
completionTokens: number;
|
|
696
|
+
};
|
|
697
|
+
}>;
|
|
655
698
|
deleteKnowledge(docId: string): Promise<{
|
|
656
699
|
deleted: boolean;
|
|
657
700
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
// import { createAdminClient } from '@pouchy_ai/admin-sdk';
|
|
9
9
|
// const admin = createAdminClient({ adminKey: process.env.POUCHY_ADMIN_KEY! });
|
|
10
10
|
// const { agents } = await admin.listAgents();
|
|
11
|
-
export const ADMIN_SDK_VERSION = '0.
|
|
11
|
+
export const ADMIN_SDK_VERSION = '0.17.0';
|
|
12
12
|
export const DEFAULT_BASE_URL = 'https://pouchy.ai/v1/admin';
|
|
13
13
|
/** Default per-request timeout (ms). A hung upstream otherwise never rejects. */
|
|
14
14
|
const DEFAULT_TIMEOUT_MS = 30_000;
|
|
@@ -247,6 +247,7 @@ export function createAdminClient(opts) {
|
|
|
247
247
|
ingestKnowledgeFile: (input) => request('POST', '/knowledge/file', input),
|
|
248
248
|
ingestKnowledgeUrl: (input) => request('POST', '/knowledge/url', input),
|
|
249
249
|
searchKnowledge: (query) => request('POST', '/knowledge/search', { query }),
|
|
250
|
+
extractJson: (input) => request('POST', '/utility/json', input),
|
|
250
251
|
deleteKnowledge: (id) => request('DELETE', `/knowledge/${encodeURIComponent(id)}`),
|
|
251
252
|
listSkills: () => request('GET', '/skills'),
|
|
252
253
|
installSkill: (input) => request('POST', '/skills', input),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pouchy_ai/admin-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Typed TypeScript client for the Pouchy Admin API \u2014 manage agents, keys, end users, knowledge, skills, channels, schedules, webhooks and credentials headlessly, with a project Admin key.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|