@autobe/agent
Version:
AI backend server code generator
16 lines (15 loc) • 671 B
TypeScript
import { MicroAgentica } from "@agentica/core";
import { ILlmSchema } from "@samchon/openapi";
import { AutoBeContext } from "../../context/AutoBeContext";
export declare const AutoBeAnalyzeReviewer: <Model extends ILlmSchema.Model>(ctx: AutoBeContext<Model>, input: AutoBeAnalyzeReviewer.ICreateReviewerAgentInput) => MicroAgentica<Model>;
export declare namespace AutoBeAnalyzeReviewer {
interface ICreateReviewerAgentInput {
/**
* Indicates the initial utterance of the user. Identify the purpose of your
* documentation for better review.
*/
query: string;
/** Total file names */
files: string;
}
}