File size: 1,731 Bytes
6255f8a
 
be39a04
6255f8a
be39a04
6255f8a
 
 
be39a04
6255f8a
 
 
be39a04
6255f8a
 
 
be39a04
6255f8a
 
 
3b45de9
6255f8a
 
 
3b45de9
 
6255f8a
 
 
3b45de9
6255f8a
be39a04
6255f8a
 
 
 
 
 
 
 
 
 
 
 
 
 
be39a04
 
6255f8a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import gradio as gr
from llm.gptPlotCreator import PlotCreator

plot_creator = PlotCreator()

def add_text(history, text):
    history = history + [(text, None)]
    return history, ""

def add_file(history, file):
    history = history + [((file.name,), None)]
    return history

def bot(history):
    # Get the last input from the user
    user_input = history[-1][0]
    
    # Check if it is a string
    if isinstance(user_input, str):
        # Generate the plot
        response = plot_creator.create_plot(user_input)
    else:
        response = "**That's cool!**"

    history[-1][1] = response[0]
    history = history + [(None, f"Here is the code used to generate the plot:\n```\n{response[1]}```")]
    return history

with gr.Blocks() as demo:
    gr.Markdown("# GPT MAVPlot\n\nThis web-based tool allows users to upload mavlink tlogs in which the chat bot will use to generate plots from. It does this by creating a python script using pymavlink and matplotlib. The output includes the plot and the code used to generate it. ")
    chatbot = gr.Chatbot([], elem_id="chatbot").style(height=750)
    
    with gr.Row():
        with gr.Column(scale=0.85):
            txt = gr.Textbox(
                show_label=False,
                placeholder="Enter text and press enter, or upload an image",
            ).style(container=False)
        with gr.Column(scale=0.15, min_width=0):
            btn = gr.UploadButton("πŸ“", file_types=["image", "video", "audio"])
            
    txt.submit(add_text, [chatbot, txt], [chatbot, txt]).then(
        bot, chatbot, chatbot
    )
    btn.upload(add_file, [chatbot, btn], [chatbot]).then(
        bot, chatbot, chatbot
    )

if __name__ == "__main__":
    demo.launch()