eddyter 1.3.78 → 1.3.79
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/api/ai/aiAgentService.d.ts +5 -0
- package/dist/assets/style.css +1 -1
- package/dist/context/ToolbarContext.d.ts +1 -0
- package/dist/editorConfig.d.ts +5 -0
- package/dist/{generateDocxThumbnail-DI95OEXG.js → generateDocxThumbnail-CXNsp_vq.js} +1 -1
- package/dist/{generatePdfThumbnail-B7hHlIu1.js → generatePdfThumbnail-3Hb1S2pI.js} +1 -1
- package/dist/{generateXlsxThumbnail-L2Rxm_uB.js → generateXlsxThumbnail-ClWnaOWl.js} +1 -1
- package/dist/{html2pdf.bundle.min-D1aH-6LZ.js → html2pdf.bundle.min-C7tWgf-a.js} +1 -1
- package/dist/{index-Bzbg5ykO.js → index-BNUSWrnu.js} +4 -4
- package/dist/{index-BDzAe_Dw.js → index-D8wkKyID.js} +10066 -9916
- package/dist/{index-Bl_jnnhX.js → index-M7WgxScr.js} +1 -1
- package/dist/{index-BBPa4rFJ.js → index-mc4JCPoi.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/plugins/InlineAutocompletePlugin.d.ts +7 -0
- package/dist/types.d.ts +7 -0
- package/dist/ui/Icons.d.ts +2 -1
- package/package.json +1 -1
|
@@ -55,6 +55,11 @@ export declare function processAITransformation(config: AITransformConfig): Prom
|
|
|
55
55
|
export declare function processAIRequest(config: AIAgentConfig & {
|
|
56
56
|
secondaryPrompt?: string;
|
|
57
57
|
}): Promise<void>;
|
|
58
|
+
/**
|
|
59
|
+
* Fetch an inline autocomplete suggestion from the agent.
|
|
60
|
+
* Uses fast/basic model variants for low-latency predictions.
|
|
61
|
+
*/
|
|
62
|
+
export declare function fetchAutocompleteSuggestion(textBefore: string, textAfter: string, model: AIProvider, apiKey: string, signal?: AbortSignal): Promise<string | null>;
|
|
58
63
|
/**
|
|
59
64
|
* Fetch the user's last 3 AI prompt history entries.
|
|
60
65
|
*/
|