Skip to content

Commit

Permalink
fix: fix package error issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 6, 2023
1 parent 265e1ee commit eff003d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/studio/app/api/images/generate/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { VYroAI } from '@studio-b3/llmapi';
// Imagine Art
// see https://platform.imagine.art/dashboard
const api = new VYroAI({
apiKey: process.env.VYRO_API_KEY,
apiType: process.env.VYRO_API_TYPE,
apiKey: process.env.VYRO_API_KEY || '',
apiType: process.env.VYRO_API_TYPE || '',
});

// export const runtime = 'edge';
Expand Down

0 comments on commit eff003d

Please sign in to comment.