mac: bundle web chat assets

This commit is contained in:
Peter Steinberger
2025-12-06 05:01:28 +01:00
parent 15cdeeddaf
commit 42d843297d
315 changed files with 16618 additions and 20 deletions

View File

@@ -0,0 +1,24 @@
import type { AgentTool } from "@mariozechner/pi-ai";
import { type Static } from "@sinclair/typebox";
import type { ToolRenderer } from "./types.js";
declare const extractDocumentSchema: import("@sinclair/typebox").TObject<{
url: import("@sinclair/typebox").TString;
}>;
export type ExtractDocumentParams = Static<typeof extractDocumentSchema>;
export interface ExtractDocumentResult {
extractedText: string;
format: string;
fileName: string;
size: number;
}
export declare function createExtractDocumentTool(): AgentTool<typeof extractDocumentSchema, ExtractDocumentResult> & {
corsProxyUrl?: string;
};
export declare const extractDocumentTool: AgentTool<import("@sinclair/typebox").TObject<{
url: import("@sinclair/typebox").TString;
}>, ExtractDocumentResult> & {
corsProxyUrl?: string;
};
export declare const extractDocumentRenderer: ToolRenderer<ExtractDocumentParams, ExtractDocumentResult>;
export {};
//# sourceMappingURL=extract-document.d.ts.map