Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | 
         @@ -23,8 +23,7 @@ LICENSE = """ 
     | 
|
| 23 | 
         | 
| 24 | 
         
             
            PLACEHOLDER = """
         
     | 
| 25 | 
         
             
            <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
         
     | 
| 26 | 
         
            -
               < 
     | 
| 27 | 
         
            -
               <h1 style="font-size: 28px; margin-bottom: 2px; opacity: 0.55;">Meta llama3</h1>
         
     | 
| 28 | 
         
             
               <p style="font-size: 18px; margin-bottom: 2px; opacity: 0.65;">Ask me anything...</p>
         
     | 
| 29 | 
         
             
            </div>
         
     | 
| 30 | 
         
             
            """
         
     | 
| 
         @@ -105,7 +104,6 @@ chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterf 
     | 
|
| 105 | 
         
             
            with gr.Blocks(fill_height=True, css=css) as demo:
         
     | 
| 106 | 
         | 
| 107 | 
         
             
                gr.Markdown(DESCRIPTION)
         
     | 
| 108 | 
         
            -
                gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
         
     | 
| 109 | 
         
             
                gr.ChatInterface(
         
     | 
| 110 | 
         
             
                    fn=chat_llama3_8b,
         
     | 
| 111 | 
         
             
                    chatbot=chatbot,
         
     | 
| 
         | 
|
| 23 | 
         | 
| 24 | 
         
             
            PLACEHOLDER = """
         
     | 
| 25 | 
         
             
            <div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
         
     | 
| 26 | 
         
            +
               <h1 style="font-size: 28px; margin-bottom: 2px; opacity: 0.55;">DeepSeek-R1-Distill-Llama-8B</h1>
         
     | 
| 
         | 
|
| 27 | 
         
             
               <p style="font-size: 18px; margin-bottom: 2px; opacity: 0.65;">Ask me anything...</p>
         
     | 
| 28 | 
         
             
            </div>
         
     | 
| 29 | 
         
             
            """
         
     | 
| 
         | 
|
| 104 | 
         
             
            with gr.Blocks(fill_height=True, css=css) as demo:
         
     | 
| 105 | 
         | 
| 106 | 
         
             
                gr.Markdown(DESCRIPTION)
         
     | 
| 
         | 
|
| 107 | 
         
             
                gr.ChatInterface(
         
     | 
| 108 | 
         
             
                    fn=chat_llama3_8b,
         
     | 
| 109 | 
         
             
                    chatbot=chatbot,
         
     |