Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | @@ -81,13 +81,12 @@ examples = ['I feel dizzy', 'what is the possible sickness for fatigue'] | |
| 81 |  | 
| 82 |  | 
| 83 | 
             
            title = "Real-time AI App with Groq API and LangChain to Answer medical questions"
         | 
| 84 | 
            -
            demo = gr.ChatInterface(
         | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 87 | 
            -
             | 
| 88 | 
            -
             | 
| 89 | 
            -
             | 
| 90 | 
            -
                allow_flagging="never",
         | 
| 91 | 
             
            )
         | 
| 92 |  | 
| 93 |  | 
|  | |
| 81 |  | 
| 82 |  | 
| 83 | 
             
            title = "Real-time AI App with Groq API and LangChain to Answer medical questions"
         | 
| 84 | 
            +
            demo = gr.ChatInterface(rag_memory_stream,
         | 
| 85 | 
            +
                                    type="messages",
         | 
| 86 | 
            +
                                    title=title,
         | 
| 87 | 
            +
                                    fill_height=True,
         | 
| 88 | 
            +
                                    examples=examples,
         | 
| 89 | 
            +
                                    theme=gr.themes.Soft(),
         | 
|  | |
| 90 | 
             
            )
         | 
| 91 |  | 
| 92 |  | 
 
			
