feat: add ai chat example and update flags structure

This commit is contained in:
Aman Varshney
2025-03-31 22:52:21 +05:30
parent d6c4127bf5
commit a6ac5dc86c
32 changed files with 485 additions and 263 deletions

View File

@@ -19,7 +19,7 @@ export const DEFAULT_CONFIG: ProjectConfig = {
packageManager: getUserPkgManager(),
noInstall: false,
turso: false,
backendFramework: "hono",
backend: "hono",
runtime: "bun",
};
@@ -59,6 +59,9 @@ export const dependencyVersionMap = {
"@hono/trpc-server": "^0.3.4",
hono: "^4.7.5",
ai: "^4.2.8",
"@ai-sdk/google": "^1.2.3",
} as const;
export type AvailableDependencies = keyof typeof dependencyVersionMap;