File size: 1,573 Bytes
90653e1
 
 
 
 
 
 
 
 
ae5391f
90653e1
 
 
 
 
6288a82
90653e1
 
 
 
 
ae5391f
90653e1
 
 
ae5391f
90653e1
 
 
 
 
 
ae5391f
b821729
 
 
 
90653e1
 
 
 
 
 
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
{% extends 'base.html' %}

{% block title %}CA Waterboard Chatbot{% endblock %}

{% block content %}
    <!-- partial:index.partial.html -->
    <section class="msger">
        <header class="msger-header">
            <div class="msger-header-title">
                <i class="fa-thin fa-message-bot"></i>Water Regulation QA Chatbot <i class="fa-thin fa-message-bot"></i>
            </div>
        </header>

        <main class="msger-chat">
            <div class="msg left-msg">
                <div class="msg-img" style="background-image: url(../static/icons/dialogflow-insights-svgrepo-com.svg)">
                </div>

                <div class="msg-bubble">
                    <div class="msg-info">
                        <div class="msg-info-name">Chatbot</div>
                        <div class="msg-info-time"></div>
                    </div>

                    <div class="msg-text">
                        Hi, welcome to ChatBot! Please type in your question. πŸ˜„
                    </div>
                </div>
            </div>

        </main>

        <form class="msger-inputarea">
            <select id="modelSelect" class="msger-select">
                <option value="bloom" selected>Llama Bloom</option>
                <option value="langChain">LangChain OpenAI</option>
            </select>
            <input type="text" class="msger-input" id="textInput" placeholder="Enter your message...">
            <button type="submit" class="msger-send-btn">Send</button>
        </form>
    </section>
    <!-- partial -->
{% endblock %}