/************************************************************************************************* Welcome to Baml! To use this generated code, please run one of the following: $ npm install @boundaryml/baml $ yarn add @boundaryml/baml $ pnpm add @boundaryml/baml *************************************************************************************************/ import type { BamlRuntime, BamlCtxManager, ClientRegistry, Image } from "@boundaryml/baml"; import { HTTPRequest } from "@boundaryml/baml"; import type { TestStep } from "./types"; import type TypeBuilder from "./type_builder"; type BamlCallOptions = { tb?: TypeBuilder; clientRegistry?: ClientRegistry; }; export declare class AsyncHttpRequest { private runtime; private ctxManager; constructor(runtime: BamlRuntime, ctxManager: BamlCtxManager); ClassifyCheckFailure(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): Promise; CreatePartialRecipe(screenshot: Image, step: TestStep, previousActions: string[], __baml_options__?: BamlCallOptions): Promise; EvaluateCheck(screenshot: Image, check: string, __baml_options__?: BamlCallOptions): Promise; LocateTarget(screenshot: Image, target: string, __baml_options__?: BamlCallOptions): Promise; RemoveImplicitCheckContext(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): Promise; } export declare class AsyncHttpStreamRequest { private runtime; private ctxManager; constructor(runtime: BamlRuntime, ctxManager: BamlCtxManager); ClassifyCheckFailure(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): Promise; CreatePartialRecipe(screenshot: Image, step: TestStep, previousActions: string[], __baml_options__?: BamlCallOptions): Promise; EvaluateCheck(screenshot: Image, check: string, __baml_options__?: BamlCallOptions): Promise; LocateTarget(screenshot: Image, target: string, __baml_options__?: BamlCallOptions): Promise; RemoveImplicitCheckContext(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): Promise; } export {};