File size: 2,024 Bytes
2a4fe9c
2540c5f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2a4fe9c
 
2540c5f
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
52
53
54
55
56
57
58
59
import gradio as gr
import os

examples = [
    {"text": "What is this image?", "files": ["sample/ducky.jpg"]},
    {"text": "Can you summarize and translate this?", "files": ["sample/sermon.mp4"]}
]

# Function to print the like/dislike data
def print_like_dislike(x: gr.LikeData):
    print(x.index, x.value, x.liked)

# Function to add a message to the chat history
def add_message(history, message):
    for x in message["files"]:
        history.append(((x,), None))
    if message["text"] is not None:
        history.append((message["text"], None))
    return history, gr.MultimodalTextbox(value=None, interactive=False), message["text"]

# Function to generate the bot's response
def bot(history, user_input):
    if history:
        history[-1][1] = f"Cool! You said: {user_input}"
    return history

def main():
    # Define the Gradio interface using Blocks
    with gr.Blocks(fill_height=True) as webApp:
        chatbot = gr.Chatbot(
            elem_id="chatbot",
            bubble_full_width=False,
            scale=1,
        )
        chat_input = gr.MultimodalTextbox(interactive=True,
                                          file_count="multiple",
                                          placeholder="Enter message or upload file...", 
                                          show_label=False)
        user_input = gr.State()
        chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input, user_input])
        bot_msg = chat_msg.then(bot, [chatbot, user_input], chatbot, api_name="bot_response")
        bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
        chatbot.like(print_like_dislike, None, None)

        """
        # Add examples
        gr.Examples(
            examples=examples,
            inputs=chat_input,
            label="Click on an example to try it"
        )
        """

    # Start the queue and launch the interface
    webApp.queue()
    webApp.launch(share=True)

if __name__ == "__main__":
    main()