Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | @@ -75,6 +75,7 @@ title = "36 Language Translator" | |
| 75 | 
             
            description = """
         | 
| 76 | 
             
            This Demo can translate either Speech or Text form any of the selected SOURCE language amoung 36 languages to both Speech and Text in any of the selected TARGET language.
         | 
| 77 | 
             
            This Demo is powered by "facebook/hf-seamless-m4t-medium" model. Thanks for checking out.
         | 
|  | |
| 78 | 
             
            """
         | 
| 79 |  | 
| 80 | 
             
            iface = gr.Interface(
         | 
| @@ -90,7 +91,11 @@ iface = gr.Interface( | |
| 90 | 
             
                    gr.Textbox(label="Translated Text")
         | 
| 91 | 
             
                    ],
         | 
| 92 | 
             
                title="Language Translation App",
         | 
| 93 | 
            -
                description= | 
|  | |
|  | |
|  | |
|  | |
| 94 | 
             
            )
         | 
| 95 |  | 
| 96 |  | 
|  | |
| 75 | 
             
            description = """
         | 
| 76 | 
             
            This Demo can translate either Speech or Text form any of the selected SOURCE language amoung 36 languages to both Speech and Text in any of the selected TARGET language.
         | 
| 77 | 
             
            This Demo is powered by "facebook/hf-seamless-m4t-medium" model. Thanks for checking out.
         | 
| 78 | 
            +
            Select source and target languages for translation.
         | 
| 79 | 
             
            """
         | 
| 80 |  | 
| 81 | 
             
            iface = gr.Interface(
         | 
|  | |
| 91 | 
             
                    gr.Textbox(label="Translated Text")
         | 
| 92 | 
             
                    ],
         | 
| 93 | 
             
                title="Language Translation App",
         | 
| 94 | 
            +
                description = """
         | 
| 95 | 
            +
                This Demo can translate either Speech or Text form any of the selected SOURCE language amoung 36 languages to both Speech and Text in any of the selected TARGET language.
         | 
| 96 | 
            +
                This Demo is powered by "facebook/hf-seamless-m4t-medium" model. Thanks for checking out.
         | 
| 97 | 
            +
                Select source and target languages for translation.
         | 
| 98 | 
            +
                """,
         | 
| 99 | 
             
            )
         | 
| 100 |  | 
| 101 |  |