mastra
Version:
cli for mastra
14 lines (11 loc) • 336 B
TypeScript
type LLMProvider = 'openai' | 'anthropic' | 'groq' | 'google' | 'cerebras';
declare const create: (args: {
projectName?: string;
components?: string[];
llmProvider?: LLMProvider;
addExample?: boolean;
llmApiKey?: string;
createVersionTag?: string;
timeout?: number;
}) => Promise<void>;
export { create };