Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
import gradio as gr
|
| 5 |
|
| 6 |
app = gr.load(
|
| 7 |
-
"meta-llama/Llama-3.2-
|
| 8 |
src = "models",
|
| 9 |
inputs = [gr.Textbox(label = "Input")],
|
| 10 |
outputs = [gr.Textbox(label = "Output")],
|
|
@@ -21,7 +21,7 @@ app = gr.load(
|
|
| 21 |
import gradio as gr
|
| 22 |
from transformers import pipeline
|
| 23 |
|
| 24 |
-
pipe = pipeline(model = "meta-llama/Llama-3.2-
|
| 25 |
|
| 26 |
def fn(input):
|
| 27 |
output = pipe(
|
|
|
|
| 4 |
import gradio as gr
|
| 5 |
|
| 6 |
app = gr.load(
|
| 7 |
+
"meta-llama/Llama-3.2-3B-Instruct",
|
| 8 |
src = "models",
|
| 9 |
inputs = [gr.Textbox(label = "Input")],
|
| 10 |
outputs = [gr.Textbox(label = "Output")],
|
|
|
|
| 21 |
import gradio as gr
|
| 22 |
from transformers import pipeline
|
| 23 |
|
| 24 |
+
pipe = pipeline(model = "meta-llama/Llama-3.2-3B-Instruct")
|
| 25 |
|
| 26 |
def fn(input):
|
| 27 |
output = pipe(
|