ABelly99

Results 1 comments of ABelly99

I have the same issue. I have this code: import ollama desiredModel='llama3.2:3b' userInput=input("Ask me anything... \n") ai_response = ollama.chat(model=desiredModel, messages=[ { 'role': 'user', 'content': userInput, }, ]) OllamaResponse=response['message']['content'] print(f"The Ai...