Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
pipe = pipeline(task="text-
|
5 |
-
model="
|
6 |
gr.Interface.from_pipeline(pipe,
|
7 |
-
title="
|
8 |
-
description="Using pipeline with
|
9 |
).launch(inbrowser=True)
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
pipe = pipeline(task="text-generation",
|
5 |
+
model="meta-llama/Meta-Llama-3-8B")
|
6 |
gr.Interface.from_pipeline(pipe,
|
7 |
+
title="TextGen",
|
8 |
+
description="Using pipeline with Llama3",
|
9 |
).launch(inbrowser=True)
|