main #6
					 1 changed files with 20 additions and 0 deletions
				
			
		
							
								
								
									
										20
									
								
								py/simple_chat.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								py/simple_chat.py
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,20 @@ | |||
| from api import API | ||||
| 
 | ||||
| chat1 = API() | ||||
| 
 | ||||
| while True: | ||||
|     print("") | ||||
|     print("Which AI Model do you want to use? Write as a Number (1-5)") | ||||
|     model_input = input() | ||||
|     model = int(model_input) | ||||
|     if model <=0 or model > 5: | ||||
|         print("ungültiges Modell") | ||||
|         continue | ||||
|     while True: | ||||
|         print("") | ||||
|         print("Ask a question") | ||||
|         inputText = input () | ||||
|         if inputText == "change": | ||||
|             break | ||||
|         outputText = chat1.send_message(inputText, model) | ||||
|         print(outputText) | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue