style
Browse files
app.py
CHANGED
@@ -1,16 +1,21 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
# Load a
|
5 |
-
model = pipeline("
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
return model(text)
|
10 |
|
11 |
-
#
|
12 |
-
interface = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
-
# Launch the interface
|
15 |
if __name__ == "__main__":
|
16 |
interface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
# Load a large model (e.g., text generation)
|
5 |
+
model = pipeline("text-generation", model="gpt-3")
|
6 |
|
7 |
+
def generate_text(prompt):
|
8 |
+
return model(prompt, max_length=50)
|
|
|
9 |
|
10 |
+
# Custom interface with sliders and descriptions
|
11 |
+
interface = gr.Interface(
|
12 |
+
fn=generate_text,
|
13 |
+
inputs=gr.Textbox(label="Enter your prompt here"),
|
14 |
+
outputs=gr.Textbox(label="Generated Text"),
|
15 |
+
title="AI Text Generator",
|
16 |
+
description="This app generates text based on your input prompt. Try it out!",
|
17 |
+
theme="dark"
|
18 |
+
)
|
19 |
|
|
|
20 |
if __name__ == "__main__":
|
21 |
interface.launch()
|