Yoxas commited on
Commit
92ba00b
1 Parent(s): cf026bc

Update src/interface.py

Browse files
Files changed (1) hide show
  1. 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 on Fly", theme="Monochrome") as demo:
6
  # App Description
7
  gr.Markdown(
8
  """
9
- ## LLAMA 3 Rag on Fly App
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