Update app.py
Browse files
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=
|
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()
|