File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
packages/create-agents/src Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @inkeep/create-agents " : patch
3+ ---
4+
5+ pnpm db: generate no longer needed
Original file line number Diff line number Diff line change @@ -207,7 +207,9 @@ export const createAgents = async (
207207
208208 // Ensure models are always configured - fail if none were set
209209 if ( Object . keys ( defaultModelSettings ) . length === 0 ) {
210- p . cancel ( 'Cannot continue without a model configuration for project. Please provide an API key for at least one AI provider.' ) ;
210+ p . cancel (
211+ 'Cannot continue without a model configuration for project. Please provide an API key for at least one AI provider.'
212+ ) ;
211213 process . exit ( 1 ) ;
212214 }
213215
@@ -450,7 +452,6 @@ async function setupProjectInDatabase(config: FileConfig) {
450452async function setupDatabase ( ) {
451453 try {
452454 // Run drizzle-kit migrate to apply migrations to database
453- await execAsync ( 'pnpm db:generate' ) ;
454455 await execAsync ( 'pnpm db:migrate' ) ;
455456 await new Promise ( ( resolve ) => setTimeout ( resolve , 1000 ) ) ;
456457 } catch ( error ) {
You can’t perform that action at this time.
0 commit comments