RTHGV commited on
Commit
005bd31
·
verified ·
1 Parent(s): 66835bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +43 -9
app.py CHANGED
@@ -1,9 +1,12 @@
1
  import gradio as gr
2
- from deep_translator import GoogleTranslator
3
  import nltk
4
  from nltk.tokenize import word_tokenize
5
  from nltk.corpus import stopwords
6
  from nltk.stem import WordNetLemmatizer
 
 
 
 
7
 
8
  # Download necessary NLTK data
9
  nltk.download('punkt', quiet=True)
@@ -21,39 +24,70 @@ def translate_text(text, target_language):
21
  translator = GoogleTranslator(source='auto', target=target_language)
22
  return translator.translate(text)
23
 
24
- def process_input(input_text, feature, target_language):
 
 
 
 
 
 
 
 
 
 
25
  if not input_text:
26
- return "No input provided"
27
 
28
  processed_text = natural_language_understanding(input_text)
29
 
30
  if feature == "Translation":
31
  result = translate_text(processed_text, target_language)
 
 
32
  elif feature == "Transcription":
33
  result = processed_text
34
  else:
35
  result = "Invalid feature selected"
36
 
37
- return result
 
 
 
 
 
 
 
 
38
 
39
  # Create Gradio interface
40
  with gr.Blocks() as demo:
41
  gr.Markdown("# The Advanced Multi-Faceted Chatbot")
42
- gr.Markdown("Enter text to interact with the chatbot. Choose a feature and specify language for translation if needed.")
43
 
44
- input_text = gr.Textbox(label="Input Text")
 
 
45
 
46
  with gr.Row():
47
- feature = gr.Radio(["Translation", "Transcription"], label="Feature")
48
  target_language = gr.Textbox(label="Target Language (e.g., 'fr' for French)")
 
49
 
50
  submit_button = gr.Button("Process")
51
  result_text = gr.Textbox(label="Result")
 
 
52
 
53
  submit_button.click(
54
  process_input,
55
- inputs=[input_text, feature, target_language],
56
- outputs=result_text
 
 
 
 
 
 
57
  )
58
 
59
  # Launch the interface
 
1
  import gradio as gr
 
2
  import nltk
3
  from nltk.tokenize import word_tokenize
4
  from nltk.corpus import stopwords
5
  from nltk.stem import WordNetLemmatizer
6
+ from deep_translator import GoogleTranslator
7
+ from gtts import gTTS
8
+ import tempfile
9
+ import os
10
 
11
  # Download necessary NLTK data
12
  nltk.download('punkt', quiet=True)
 
24
  translator = GoogleTranslator(source='auto', target=target_language)
25
  return translator.translate(text)
26
 
27
+ def text_to_speech(text):
28
+ tts = gTTS(text)
29
+ with tempfile.NamedTemporaryFile(delete=False, suffix=".mp3") as fp:
30
+ tts.save(fp.name)
31
+ return fp.name
32
+
33
+ def process_input(input_text, input_audio, feature, target_language, output_language):
34
+ if input_audio is not None:
35
+ # For now, we'll just return a message as we can't process audio input
36
+ return "Audio input processing is not available in this version.", None
37
+
38
  if not input_text:
39
+ return "No input provided", None
40
 
41
  processed_text = natural_language_understanding(input_text)
42
 
43
  if feature == "Translation":
44
  result = translate_text(processed_text, target_language)
45
+ elif feature == "Voice Command":
46
+ result = "Voice command feature is not implemented in this version"
47
  elif feature == "Transcription":
48
  result = processed_text
49
  else:
50
  result = "Invalid feature selected"
51
 
52
+ if output_language:
53
+ result = translate_text(result, output_language)
54
+
55
+ return result, None
56
+
57
+ def tts_function(text):
58
+ if text:
59
+ return text_to_speech(text)
60
+ return None
61
 
62
  # Create Gradio interface
63
  with gr.Blocks() as demo:
64
  gr.Markdown("# The Advanced Multi-Faceted Chatbot")
65
+ gr.Markdown("Enter text to interact with the chatbot. Choose a feature and specify languages for translation if needed.")
66
 
67
+ with gr.Row():
68
+ input_text = gr.Textbox(label="Input Text")
69
+ input_audio = gr.Audio(label="Input Audio", type="filepath", visible=False) # Hidden for now
70
 
71
  with gr.Row():
72
+ feature = gr.Radio(["Translation", "Voice Command", "Transcription"], label="Feature")
73
  target_language = gr.Textbox(label="Target Language (e.g., 'fr' for French)")
74
+ output_language = gr.Textbox(label="Output Language (e.g., 'es' for Spanish)")
75
 
76
  submit_button = gr.Button("Process")
77
  result_text = gr.Textbox(label="Result")
78
+ tts_button = gr.Button("Convert to Speech")
79
+ audio_output = gr.Audio(label="Audio Output")
80
 
81
  submit_button.click(
82
  process_input,
83
+ inputs=[input_text, input_audio, feature, target_language, output_language],
84
+ outputs=[result_text, audio_output]
85
+ )
86
+
87
+ tts_button.click(
88
+ tts_function,
89
+ inputs=[result_text],
90
+ outputs=[audio_output]
91
  )
92
 
93
  # Launch the interface