Spaces:
Sleeping
Sleeping
Commit
·
84e65f7
1
Parent(s):
bc7d87b
yeah
Browse files
app.py
CHANGED
@@ -1,23 +1,38 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
3 |
|
4 |
-
#
|
5 |
-
|
6 |
-
# Replace 'gpt2' with your model
|
7 |
-
def pipe(temp, temp2):
|
8 |
-
return temp
|
9 |
|
10 |
-
def
|
11 |
-
|
12 |
-
output = pipe(input_text, max_length=2000) # Adjust parameters as needed
|
13 |
-
return output[0]['generated_text']
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
if __name__ == "__main__":
|
23 |
interface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
import requests
|
3 |
|
4 |
+
# Set your Hugging Face API key here
|
5 |
+
API_KEY = "your_huggingface_api_key"
|
|
|
|
|
|
|
6 |
|
7 |
+
def generate_text(input_text):
|
8 |
+
return input_text
|
|
|
|
|
9 |
|
10 |
+
def analyze_sentiment(input_text):
|
11 |
+
return input_text
|
12 |
+
|
13 |
+
def echo_text(input_text):
|
14 |
+
return input_text
|
15 |
+
|
16 |
+
# Define the Gradio interface
|
17 |
+
interface = gr.Interface(
|
18 |
+
[
|
19 |
+
generate_text, # Text generation
|
20 |
+
analyze_sentiment, # Sentiment analysis
|
21 |
+
echo_text # Echo text
|
22 |
+
],
|
23 |
+
inputs=[
|
24 |
+
gr.Textbox(lines=2, placeholder="Enter text for generation..."),
|
25 |
+
gr.Textbox(lines=2, placeholder="Enter text for sentiment analysis..."),
|
26 |
+
gr.Textbox(lines=2, placeholder="Enter text to echo...")
|
27 |
+
],
|
28 |
+
outputs=[
|
29 |
+
"text",
|
30 |
+
"text",
|
31 |
+
"text"
|
32 |
+
],
|
33 |
+
title="Multiple Hugging Face Models",
|
34 |
+
description="Three different functions: Text generation, Sentiment Analysis, and Echo."
|
35 |
+
)
|
36 |
|
37 |
if __name__ == "__main__":
|
38 |
interface.launch()
|