Illia56 commited on
Commit
a1ec413
1 Parent(s): 3b29bee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +40 -0
app.py CHANGED
@@ -15,6 +15,46 @@ import streamlit as st
15
  from pytube import YouTube
16
  # import replicate
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  models = {
19
  "Llama2-70b": {
20
  "model_link": "https://huggingface.co/meta-llama/Llama-2-70b",
 
15
  from pytube import YouTube
16
  # import replicate
17
 
18
+ DESCRIPTION = """
19
+ <div class="max-w-full overflow-auto">
20
+ <table>
21
+ <thead>
22
+ <tr>
23
+ <th>Model</th>
24
+ <th>Llama2</th>
25
+ <th>Llama2-hf</th>
26
+ <th>Llama2-chat</th>
27
+ <th>Llama2-chat-hf</th>
28
+ </tr>
29
+ </thead>
30
+ <tbody>
31
+ <tr>
32
+ <td>7B</td>
33
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-7b">Link</a></td>
34
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-7b-hf">Link</a></td>
35
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-7b-chat">Link</a></td>
36
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-7b-chat-hf">Link</a></td>
37
+ </tr>
38
+ <tr>
39
+ <td>13B</td>
40
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-13b">Link</a></td>
41
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-13b-hf">Link</a></td>
42
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-13b-chat">Link</a></td>
43
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-13b-chat-hf">Link</a></td>
44
+ </tr>
45
+ <tr>
46
+ <td>70B</td>
47
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-70b">Link</a></td>
48
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-70b-hf">Link</a></td>
49
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-70b-chat">Link</a></td>
50
+ <td><a rel="noopener nofollow" href="https://huggingface.co/meta-llama/Llama-2-70b-chat-hf">Link</a></td>
51
+ </tr>
52
+ </tbody>
53
+ </table>
54
+ </div>
55
+
56
+ """
57
+
58
  models = {
59
  "Llama2-70b": {
60
  "model_link": "https://huggingface.co/meta-llama/Llama-2-70b",