Spaces:
				
			
			
	
			
			
		Build error
		
	
	
	
			
			
	
	
	
	
		
		
		Build error
		
	Commit 
							
							·
						
						895a7ca
	
1
								Parent(s):
							
							fad460a
								
Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | 
         @@ -21,7 +21,7 @@ st.set_page_config(page_title="Chat Toolkit",layout="wide") 
     | 
|
| 21 | 
         | 
| 22 | 
         
             
            menu = ["htm", "txt", "xlsx", "csv", "md", "py"]  #619
         
     | 
| 23 | 
         
             
            choice = st.sidebar.selectbox("Output File Type:", menu)
         
     | 
| 24 | 
         
            -
            model_choice = st. 
     | 
| 25 | 
         | 
| 26 | 
         
             
            def generate_filename(prompt, file_type):
         
     | 
| 27 | 
         
             
                central = pytz.timezone('US/Central')
         
     | 
| 
         | 
|
| 21 | 
         | 
| 22 | 
         
             
            menu = ["htm", "txt", "xlsx", "csv", "md", "py"]  #619
         
     | 
| 23 | 
         
             
            choice = st.sidebar.selectbox("Output File Type:", menu)
         
     | 
| 24 | 
         
            +
            model_choice = st.radio("Select Model:", ('gpt-3.5-turbo', 'gpt-3.5-turbo-0301', 'gpt-4'))
         
     | 
| 25 | 
         | 
| 26 | 
         
             
            def generate_filename(prompt, file_type):
         
     | 
| 27 | 
         
             
                central = pytz.timezone('US/Central')
         
     |