* Added a progress bar as well as some extra info to know how the generation is going without having to check the console every time.
* - Updated the Image-to-image tab, it is now working at a basic level.
- Disabled RealESRGAN by default for the Image-to-Image tab as it is not working right now.
* Fixed the K Diffusion samplers not working as they had different callbacks than the DDIM and PLMS samplers, also removed some unnecessary code that was left over and are no longer needed now that we can use the K diffusion samplers directly.
* The GFPGAN and RealESRGAN checkboxes on the Advanced tab are no longer shown if said models are not available.
* - Implemented the basic layout for the Image-to-Image tab on the UI.
- Fixed the condition that checked if the GFPGAN and RealESRGAN models were present on their folders, it was previously checking if the folder existed instead of the model files inside of it.
- Removed the Basic tab from the Text-to-Image tab and changed the Advanced tab to be an expander, the basic tab was not actually been used on the streamlit version of the UI.
* Removing the need for a custom streamlit fork, as we are not using nested columns this is no longer needed.
* Moved the embeddings to the config file and changed the Ui so it only needs to call `defaults.general.fp` to get it.
* Changed the way the image preview is updated on the UI to now use the proper callback from the DDIM and PLMS samplers, for that reason we no longer need to have the code for those samplers inside the webui_streamlit.py file.