davidgaofc commited on
Commit
84e65f7
·
1 Parent(s): bc7d87b
Files changed (1) hide show
  1. app.py +31 -16
app.py CHANGED
@@ -1,23 +1,38 @@
1
  import gradio as gr
2
- from transformers import pipeline
3
 
4
- # Load your Hugging Face model
5
- # pipe = pipeline("text-classification", model="davidgaofc/TechDebtClassifier")
6
- # Replace 'gpt2' with your model
7
- def pipe(temp, temp2):
8
- return temp
9
 
10
- def predict(input_text):
11
- # Generate output using the model
12
- output = pipe(input_text, max_length=2000) # Adjust parameters as needed
13
- return output[0]['generated_text']
14
 
15
- # Create the Gradio interface
16
- interface = gr.Interface(fn=predict,
17
- inputs=gr.Textbox(lines=2, placeholder="Type something here..."),
18
- outputs='text',
19
- title="Hugging Face Model Inference",
20
- description="Type in some text and see how the model responds!")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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()