File size: 1,269 Bytes
2b2c9b2
 
 
 
 
 
 
 
a342df0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2b2c9b2
 
 
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
34
35
36
37
38
39
40
import gradio as gr
from huggingface_hub import InferenceClient

"""
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
"""
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")

from utils import Translation, search_error_in_excel

def reply(message, history):
    # Detectar el idioma original
    original_lang = Translation.detect_language(message)
    # Traducir el mensaje al español
    translated_message = Translation.translatef(message, "es")
    
    
    # Buscar información en el Excel
    excel_response,infotype = search_error_in_excel(translated_message)
    
    # Traducir la respuesta de vuelta al idioma original
    if original_lang != "es":
        #response_translator = Translation(excel_response, original_lang)
        if infotype=="protocolo":
            final_response = Translation.translatef(excel_response, original_lang)
        else:
            final_response = excel_response
        
    else:
        final_response = excel_response

    return final_response

# Configurar la interfaz del chatbot
demo = gr.ChatInterface(fn=reply, title="Multilingual-TedCas Bot")
demo.launch(server_name="0.0.0.1", share=False)