@triplef/agent 0.1.10 → 0.1.11
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/prompts/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TemplateName, F as FormatZodShapeOptions } from '../intent.schema-
|
|
2
|
-
export { D as DEFAULT_VARIANT_ID } from '../intent.schema-
|
|
1
|
+
import { T as TemplateName, F as FormatZodShapeOptions } from '../intent.schema-CUQoRJ5x.js';
|
|
2
|
+
export { D as DEFAULT_VARIANT_ID } from '../intent.schema-CUQoRJ5x.js';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import { z, ZodTypeAny, ZodType } from 'zod';
|
|
5
5
|
import * as zod_v4_core from 'zod/v4/core';
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export { D as DEFAULT_VARIANT_ID, F as FormatZodShapeOptions, I as IntentResult, a as IntentSchema, T as TemplateName, f as formatZodShape } from '../intent.schema-
|
|
2
|
+
export { D as DEFAULT_VARIANT_ID, F as FormatZodShapeOptions, I as IntentResult, a as IntentSchema, T as TemplateName, f as formatZodShape } from '../intent.schema-CUQoRJ5x.js';
|
|
3
3
|
|
|
4
4
|
declare const BLOCKED_IMAGE_HOSTS: Set<string>;
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@triplef/agent",
|
|
3
3
|
"description": "tripleF (3F) agent domain — structured-output schemas, prompt builders, and model tools shared across the apps.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.11",
|
|
5
5
|
"packageManager": "pnpm@11.25.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -10,7 +10,6 @@ declare const TEMPLATES: readonly ["article", "news", "describe", "compare", "oc
|
|
|
10
10
|
type TemplateName = (typeof TEMPLATES)[number];
|
|
11
11
|
declare const IntentSchema: z.ZodObject<{
|
|
12
12
|
template: z.ZodEnum<{
|
|
13
|
-
text: "text";
|
|
14
13
|
article: "article";
|
|
15
14
|
news: "news";
|
|
16
15
|
describe: "describe";
|
|
@@ -25,6 +24,7 @@ declare const IntentSchema: z.ZodObject<{
|
|
|
25
24
|
stockmarketitem: "stockmarketitem";
|
|
26
25
|
stockmarketlist: "stockmarketlist";
|
|
27
26
|
merge: "merge";
|
|
27
|
+
text: "text";
|
|
28
28
|
}>;
|
|
29
29
|
prompt: z.ZodDefault<z.ZodString>;
|
|
30
30
|
tools: z.ZodArray<z.ZodEnum<{
|