agent-afk 5.177.0 → 5.177.2
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/agent/facets/schema.d.ts +8 -8
- package/dist/cli/formatter.block.d.ts +1 -1
- package/dist/cli/formatter.list.d.ts +1 -1
- package/dist/cli.mjs +533 -529
- package/dist/index.mjs +157 -157
- package/dist/telegram.mjs +228 -228
- package/package.json +1 -1
|
@@ -79,10 +79,10 @@ export declare const WorldChangesSchema: z.ZodObject<{
|
|
|
79
79
|
mutated: z.ZodBoolean;
|
|
80
80
|
}, z.core.$strip>;
|
|
81
81
|
export declare const TokenBreakdownSchema: z.ZodObject<{
|
|
82
|
-
input: z.
|
|
83
|
-
output: z.
|
|
84
|
-
cache_read: z.
|
|
85
|
-
cache_creation: z.
|
|
82
|
+
input: z.ZodNumber;
|
|
83
|
+
output: z.ZodNumber;
|
|
84
|
+
cache_read: z.ZodNumber;
|
|
85
|
+
cache_creation: z.ZodNumber;
|
|
86
86
|
cost_usd: z.ZodNumber;
|
|
87
87
|
}, z.core.$strip>;
|
|
88
88
|
export type TokenBreakdown = z.infer<typeof TokenBreakdownSchema>;
|
|
@@ -142,10 +142,10 @@ export declare const SessionFacetSchema: z.ZodObject<{
|
|
|
142
142
|
mutated: z.ZodBoolean;
|
|
143
143
|
}, z.core.$strip>;
|
|
144
144
|
token_breakdown: z.ZodOptional<z.ZodObject<{
|
|
145
|
-
input: z.
|
|
146
|
-
output: z.
|
|
147
|
-
cache_read: z.
|
|
148
|
-
cache_creation: z.
|
|
145
|
+
input: z.ZodNumber;
|
|
146
|
+
output: z.ZodNumber;
|
|
147
|
+
cache_read: z.ZodNumber;
|
|
148
|
+
cache_creation: z.ZodNumber;
|
|
149
149
|
cost_usd: z.ZodNumber;
|
|
150
150
|
}, z.core.$strip>>;
|
|
151
151
|
decisions: z.ZodArray<z.ZodString>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { type Token, type Tokens } from 'marked';
|
|
2
|
-
export declare function renderBlockquote(bq: Tokens.Blockquote, maxTableWidth: number | undefined, renderTokens: (tokens: Token[]) => string): string;
|
|
2
|
+
export declare function renderBlockquote(bq: Tokens.Blockquote, maxTableWidth: number | undefined, renderTokens: (tokens: Token[], maxWidth?: number) => string): string;
|
|
3
3
|
export declare function renderCodeBlock(code: Tokens.Code, maxTableWidth: number | undefined): string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { type Token, type Tokens } from 'marked';
|
|
2
|
-
export declare function renderList(list: Tokens.List, maxTableWidth: number | undefined, renderTokens: (tokens: Token[]) => string): string;
|
|
2
|
+
export declare function renderList(list: Tokens.List, maxTableWidth: number | undefined, renderTokens: (tokens: Token[], maxWidth?: number) => string): string;
|