Gui launcher system
There are currently no pipelines.
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.
Added the following tho each GUI:
if __name__ == "__main__":
# Get port using the QIM API
port_dict = internal_tools.get_port_dict()
internal_tools.gradio_header(Interface().title, port_dict["port"])
# Creates interface
app = Interface().create_interface()
app.launch(server_name="0.0.0.0", server_port=int(port_dict["port"]))
This allows a server to be quickly launched using the QIM port.
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.