dwb2023 commited on
Commit
a6d2bf9
1 Parent(s): b65471a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -17,6 +17,14 @@ subprocess.run(
17
  shell=True,
18
  )
19
 
 
 
 
 
 
 
 
 
20
  token = os.environ["HF_TOKEN"]
21
 
22
 
@@ -100,6 +108,6 @@ demo = gr.ChatInterface(
100
  ],
101
  stop_btn="Stop Generation",
102
  title="Chat With LLMs",
103
- description="Now Running [microsoft/Phi-3-mini-128k-instruct](https://huggingface.co/microsoft/Phi-3-mini-128k-instruct)",
104
  )
105
  demo.launch()
 
17
  shell=True,
18
  )
19
 
20
+ DESCRIPTION = """\
21
+ # Phi-3-mini-4k-instruct
22
+
23
+ This Space demonstrates [microsoft/Phi-3-mini-4k-instruct](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct) by Microsoft. Please, check the original model card for details.
24
+
25
+ For additional detail on the model, including a link to the arXiv paper, refer to the [Hugging Face Paper page for Phi 3](https://huggingface.co/papers/2404.14219) .
26
+ """
27
+
28
  token = os.environ["HF_TOKEN"]
29
 
30
 
 
108
  ],
109
  stop_btn="Stop Generation",
110
  title="Chat With LLMs",
111
+ description=DESCRIPTION,
112
  )
113
  demo.launch()