File size: 1,138 Bytes
964d3aa
84e65f7
964d3aa
84e65f7
 
964d3aa
84e65f7
4701079
 
 
 
 
 
 
 
 
 
964d3aa
84e65f7
 
 
 
 
 
 
4701079
 
 
 
 
964d3aa
 
4701079
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import gradio as gr
import requests

# Set your Hugging Face API key here
API_KEY = "your_huggingface_api_key"

def generate_text(input_text):
    added_lines = []
    for line in input_text.split('\n'):
        if line.startswith('+') and not line.startswith('+++'):
            added_line = line[1:]  # Remove the '+' sign
            if sum(len(l) + 1 for l in added_lines) + len(added_line) <= 2000:
                added_lines.append(added_line)
            else:
                return "Input too long. Please try again."
                break
    return '\n'.join(added_lines)

def analyze_sentiment(input_text):
    return input_text

def echo_text(input_text):
    return input_text

# Define the Gradio interface
interface1 = gr.Interface(fn=generate_text, inputs="text", outputs="text")
interface2 = gr.Interface(fn=analyze_sentiment, inputs="text", outputs="text")
interface3 = gr.Interface(fn=echo_text, inputs="text", outputs="text")

tabbed_interface = gr.TabbedInterface([interface1, interface2, interface3], ["Text Generation", "Sentiment Analysis", "Echo Text"])

if __name__ == "__main__":
    tabbed_interface.launch()