@eko-ai/eko 1.1.4 → 1.2.1
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/common/log.d.ts +2 -0
- package/dist/core/eko.d.ts +1 -0
- package/dist/extension/content/index.d.ts +1 -16
- package/dist/extension.cjs.js +778 -149
- package/dist/extension.esm.js +778 -149
- package/dist/extension_content_script.js +634 -6
- package/dist/index.cjs.js +787 -80
- package/dist/index.esm.js +787 -80
- package/dist/models/action.d.ts +1 -0
- package/dist/nodejs.cjs.js +712 -88
- package/dist/nodejs.esm.js +648 -24
- package/dist/types/action.types.d.ts +4 -0
- package/dist/types/eko.types.d.ts +6 -0
- package/dist/types/llm.types.d.ts +2 -0
- package/dist/web.cjs.js +651 -23
- package/dist/web.esm.js +651 -23
- package/package.json +5 -2
package/dist/core/eko.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare class Eko {
|
|
|
12
12
|
tabs: chrome.tabs.Tab[];
|
|
13
13
|
workflow?: Workflow;
|
|
14
14
|
constructor(llmConfig: LLMConfig, ekoConfig?: EkoConfig);
|
|
15
|
+
private registerLogger;
|
|
15
16
|
private buildEkoConfig;
|
|
16
17
|
private registerTools;
|
|
17
18
|
generate(prompt: string, tabs?: chrome.tabs.Tab[], param?: EkoInvokeParam): Promise<Workflow>;
|
|
@@ -1,16 +1 @@
|
|
|
1
|
-
|
|
2
|
-
declare function type(request: any): boolean;
|
|
3
|
-
declare function mouse_move(request: any): boolean;
|
|
4
|
-
declare function simulateMouseEvent(request: any, eventTypes: Array<string>, button: 0 | 1 | 2): boolean;
|
|
5
|
-
declare function scroll_to(request: any): boolean;
|
|
6
|
-
declare function get_dropdown_options(request: any): {
|
|
7
|
-
options: {
|
|
8
|
-
index: any;
|
|
9
|
-
text: any;
|
|
10
|
-
value: any;
|
|
11
|
-
}[];
|
|
12
|
-
id: any;
|
|
13
|
-
name: any;
|
|
14
|
-
} | null;
|
|
15
|
-
declare function select_dropdown_option(request: any): any;
|
|
16
|
-
declare function request_user_help(task_id: string, failure_type: string, failure_message: string): void;
|
|
1
|
+
export {};
|