AutoGPT/rnd/autogpt_builder
Toran Bruce Richards d534b63f45 feat: Add VideoRendererBlock for rendering videos
This commit adds a new `VideoRendererBlock` component to the `autogpt_builder` module. The `VideoRendererBlock` is responsible for rendering videos based on the provided video URL. It supports both YouTube videos and direct video URLs.

The `CustomNode` component in the `CustomNode.tsx` file has been updated to handle the new `VideoRendererBlock` component. When the `block_id` matches the ID of the `VideoRendererBlock`, the video is rendered using an iframe for YouTube videos or a video tag for direct video URLs.

This change improves the rendering capabilities of the application by allowing the display of videos within the UI.
2024-08-14 11:29:44 +01:00
..
.vscode feat(builder): Addition of prettier for aligned of development styles (#7629) 2024-08-05 09:14:02 +02:00
public tweak(rnd): Update AutoGPT logo file to be larger (#7408) 2024-07-13 21:08:09 +01:00
src feat: Add VideoRendererBlock for rendering videos 2024-08-14 11:29:44 +01:00
.env.example feat(rnd) Agent Marketplace MVP (#7657) 2024-08-05 16:51:17 +02:00
.eslintrc.json Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
.gitignore Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
.prettierignore feat(builder): Addition of prettier for aligned of development styles (#7629) 2024-08-05 09:14:02 +02:00
Dockerfile fix(builder): Temporarily disbale TS checks (#7777) 2024-08-09 09:59:39 +01:00
README.md fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
components.json fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
next.config.mjs fix(builder): Temporarily disbale TS checks (#7777) 2024-08-09 09:59:39 +01:00
package.json feat(builder): Rewrite & split up node inputs (#7722) 2024-08-06 20:32:49 +02:00
postcss.config.mjs Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
tailwind.config.ts fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
tsconfig.json Add support for nextjs based app (#7266) 2024-06-27 10:02:54 +01:00
webpack.config.js fix(builder): Apply Prettier Formatting (#7695) 2024-08-05 09:18:08 +02:00
yarn.lock fix(builder): Temporarily disbale TS checks (#7777) 2024-08-09 09:59:39 +01:00

README.md

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