Conversation
…e it was checking for `UV` environment variable instead of the `uv` executable
…riable not being available at build time
…an that of the worker process
…ing TXT, JSON and CSV. Add download captions button.
…ab. Improve creation modals
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 new, interactive web interface designed to streamline the management and execution of FastVideo tasks. It provides a user-friendly way to configure and monitor video generation jobs, abstracting away complex command-line operations. The UI integrates a robust backend for job orchestration and persistence, ensuring a smooth workflow for users interacting with the FastVideo system. 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
|
There was a problem hiding this comment.
Code Review
This pull request introduces a comprehensive web-based UI for running and managing jobs, complete with a FastAPI backend and a SvelteKit frontend. The changes are extensive and well-structured, particularly the improvements to logging and error propagation in the multiprocessing workers, which significantly enhance the system's robustness. The backend architecture is sound, with a clear separation of concerns. I have a few suggestions focused on improving the maintainability, clarity, and debuggability of the new backend components.
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 (sped up to reduce size):
output.mp4