@inkeep/create-agents
Version:
Create an Inkeep Agent Framework project
44 lines (43 loc) • 945 B
TypeScript
export declare const defaultGoogleModelConfigurations: {
base: {
model: string;
};
structuredOutput: {
model: string;
};
summarizer: {
model: string;
};
};
export declare const defaultOpenaiModelConfigurations: {
base: {
model: string;
};
structuredOutput: {
model: string;
};
summarizer: {
model: string;
};
};
export declare const defaultAnthropicModelConfigurations: {
base: {
model: string;
};
structuredOutput: {
model: string;
};
summarizer: {
model: string;
};
};
export declare const createAgents: (args?: {
dirName?: string;
templateName?: string;
openAiKey?: string;
anthropicKey?: string;
googleKey?: string;
template?: string;
customProjectId?: string;
}) => Promise<void>;
export declare function createCommand(dirName?: string, options?: any): Promise<void>;