File size: 426 Bytes
794a200
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def start_assessment():
    return "Welcome to EcoPropertyRetrofitGPT! Begin your property retrofit assessment by answering each question as it appears. Your responses will automatically guide the creation of a comprehensive retrofit plan."

def create_ui():
    iface = gr.Interface(fn=start_assessment, inputs=[], outputs="text")
    iface.launch(share=True)

if __name__ == "__main__":
    create_ui()