File size: 1,677 Bytes
88b078d
dc93d8c
 
 
 
 
 
 
 
88b078d
 
dc93d8c
 
 
 
 
 
 
88b078d
 
dc93d8c
 
bbdabb4
dc93d8c
 
 
bbdabb4
 
 
 
8bac01a
 
 
 
 
 
 
 
 
 
bbdabb4
 
 
8bac01a
 
 
 
bbdabb4
8bac01a
 
 
 
 
 
 
 
 
 
 
 
bbdabb4
 
 
 
 
 
 
 
 
 
 
88b078d
 
dc93d8c
 
 
bbdabb4
 
88b078d
 
dc93d8c
 
 
 
 
 
bbdabb4
dc93d8c
 
 
 
 
88b078d
d1b62ff
 
 
 
 
 
 
 
 
 
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

#chat-container {
    width: 60%;
    max-width: 800px;
    border: 1px solid #ddd;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

#chat-box {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

.message {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user .avatar, .model .avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: 10px;
}

.user {
    justify-content: flex-end;
}

.user .message-text {
    background-color: #dcf8c6;
    padding: 8px 12px;
    border-radius: 15px;
}

.model {
    justify-content: flex-start;
}

.model .message-text {
    background-color: #e5e5ea;
    padding: 8px 12px;
    border-radius: 15px;
}

.bot {
    background-color: #e5e5ea;
    align-self: flex-start;
}

.error {
    background-color: #ffdddd;
    color: #d8000c;
    align-self: center;
}

#user-input {
    width: calc(100% - 80px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#send-button {
    width: 60px;
    height: 38px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#send-button:hover {
    background-color: #0056b3;
}

#model-selector-container {
    margin-bottom: 10px;
}

#model-selector {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}