File size: 1,638 Bytes
79278ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.page {
  min-width: 1000px;
  .header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    .user_container {
      font-weight: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      svg {
        width: 22px;
        height: 22px;
      }
      .logout {
        width: 25px;
        svg {
          color: var(--error-color);
        }
      }
      .user_name {
        min-width: 100px;
        display: flex;
        align-items: center;
        gap: 10px;

        svg {
          color: var(--placeholder-color);
        }
      }
    }
  }
  .search {
    width: 100%;
    .search_block {
      display: flex;
      width: 100%;
      justify-content: space-between;
      gap: 10px;
      .search_btns {
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding-top: 10px;
        .btn {
          justify-content: center;
          align-items: center;
          line-height: 15px;
          height: 50px;
          width: 145px;
        }
      }
    }

    .collapsible {
      margin-top: 10px;
    }

    .request_params {
      margin: 10px;
      .toggle {
        margin-bottom: 5px;
      }
    }
  }

  .loading {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    padding-top: 20px;
  }
  .llm_container {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .llm_answer {
    .result_text_prompt {
      background-color: var(--white-color);
    }
  }
}