mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-07 05:15:09 -05:00
* add ideogram ai image gen * fixed revid secret api key being removed * fixed auto checks errors * Add AI Upscale option to IdeogramModelBlock - Introduced an 'Upscale Image' option in the input schema to allow users to upscale generated images. - Created the 'UpscaleOption' enum with options 'AI Upscale' and 'No Upscale'. - Implemented the 'upscale_image' method to download the generated image into RAM and send it to the Ideogram AI upscale API without saving it to disk. - Updated the 'run' method to handle the upscaling process based on the user's input. - Ensured that the image processing is done entirely in memory (RAM) without writing to disk. - Updated test inputs and mocks to reflect the new 'Upscale Image' option. --------- Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com>
This is the frontend for AutoGPT's next generation
Getting Started
Run the following installation once.
npm install
# or
yarn install
# or
pnpm install
# or
bun install
Next, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
For subsequent runs, you do not have to npm install again. Simply do npm run dev.
If the project is updated via git, you will need to npm install after each update.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
Deploy
TODO