Update src/interface.py
Browse files- src/interface.py +5 -3
src/interface.py
CHANGED
|
@@ -2,14 +2,16 @@ import gradio as gr
|
|
| 2 |
|
| 3 |
# Gradio application setup
|
| 4 |
def create_demo():
|
| 5 |
-
with gr.Blocks(title="LLAMA 3 Rag
|
| 6 |
# App Description
|
| 7 |
gr.Markdown(
|
| 8 |
"""
|
| 9 |
-
## LLAMA 3 Rag
|
| 10 |
|
| 11 |
This application allows you to experiment with LLAMA 3 8B Instruct model for RAG.
|
| 12 |
-
You can adjust various parameters to control the model's output.
|
|
|
|
|
|
|
| 13 |
"""
|
| 14 |
)
|
| 15 |
|
|
|
|
| 2 |
|
| 3 |
# Gradio application setup
|
| 4 |
def create_demo():
|
| 5 |
+
with gr.Blocks(title="LLAMA 3 Rag Chat pdf", theme="Monochrome") as demo:
|
| 6 |
# App Description
|
| 7 |
gr.Markdown(
|
| 8 |
"""
|
| 9 |
+
## LLAMA 3 Rag chat pdf
|
| 10 |
|
| 11 |
This application allows you to experiment with LLAMA 3 8B Instruct model for RAG.
|
| 12 |
+
You can adjust various parameters to control the model's output.
|
| 13 |
+
|
| 14 |
+
Original https://huggingface.co/spaces/ModularityAI/LLama3Rag
|
| 15 |
"""
|
| 16 |
)
|
| 17 |
|