BioRAG / app.py
C2MV's picture
Upload 3 files
227fa34 verified
raw
history blame
353 Bytes
# app.py
from UI import create_interface
import interface as app_interface_module # Necesitamos la funci贸n process_and_plot
def main():
# Pasa la funci贸n de procesamiento real a create_interface
demo = create_interface(process_function_for_button=app_interface_module.process_and_plot)
demo.launch()
if __name__ == "__main__":
main()