generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
15 lines (14 loc) • 670 B
TypeScript
import { AgentFunctionResult, LlmApi, Tokenizer } from '../agent-core/index.js';
import { LlmAgentFunctionBase } from './utils/index.js';
import { Agent } from '../agents/index.js';
interface AnalyzeSoftwareRequirementsParameters {
goal: string;
}
export declare class AnalyzeSoftwareRequirementsFunction extends LlmAgentFunctionBase<AnalyzeSoftwareRequirementsParameters> {
constructor(llm: LlmApi, tokenizer: Tokenizer);
name: string;
description: string;
parameters: any;
buildExecutor({ context, }: Agent<unknown>): (params: AnalyzeSoftwareRequirementsParameters, rawParams?: string | undefined) => Promise<AgentFunctionResult>;
}
export {};