almncarlo commited on
Commit
53d405e
·
verified ·
1 Parent(s): 70ce536

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,9 +1,9 @@
1
  import gradio as gr
2
  from transformers import pipeline
3
 
4
- pipe = pipeline(task="text-to-apeech",
5
- model="espnet/kan-bayashi_ljspeech_vits")
6
  gr.Interface.from_pipeline(pipe,
7
- title="TTS",
8
- description="Using pipeline with VITS TTS",
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)