Conversation
…e it was checking for `UV` environment variable instead of the `uv` executable
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request delivers a significant new feature: a web-based interface for FastVideo, enabling users to interactively manage video generation tasks. It provides a user-friendly way to initiate and oversee video inference, offering real-time feedback and control over job execution and parameters. The introduction of this UI streamlines the workflow for generating videos, making the powerful FastVideo library more accessible and manageable for a wider range of users. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
…riable not being available at build time
There was a problem hiding this comment.
Code Review
This pull request introduces a comprehensive job runner UI with a FastAPI backend and a Next.js frontend. The backend architecture is robust, featuring solid error handling in the multiprocessing setup and an effective caching mechanism for video generators. The frontend provides a clean and intuitive interface for managing jobs, complete with live log polling and status updates. My review includes a few suggestions for improvement, such as fixing a bug in worker error handling, enhancing the Executor interface design, and optimizing frontend polling efficiency. Overall, this is an excellent and well-implemented feature.
…methods to Executor
…ethods set_log_queue and clear_log_queue
This PR adds a web-based UI that allows running jobs for various purposes. Currently only video inference is supported with the following parameters:
Jobs can be:
All models that are registered through FastVideo registry are supported.
Currently the following features are included:
To run, navigate to the
uidirectory and run:There are two services that start concurrently: the web server and the API server. They can also be started separately using
npm run start:apiandnpm run start:web. In this case, the.env.localfile can be used to configure the API server URL (it defaults tohttp://localhost:8089).The web server can also be run in dev mode using
npm run dev. This will automatically restart the server upon any changes made to the UI.Demo video is shown below:
Screen.Recording.2026-02-28.at.1.31.12.PM.480p.mov