In this video we will include some small codes and explain how to install and interact with Microsoft’s phi3 language model.
From the link below you can access the official Ollama website and download the application:
Code to interact with the model in python, without including the while loop:
import ollama
user_prompt = input('Cesar: ')
response = ollama.generate(model='phi3', prompt=user_prompt)
print(response['response'])
Python code to interact with the model repeatedly until we type the word “goodbye”:
import ollama
# Bucle para preguntar continuamente hasta que el usuario escriba 'adios'
while True:
# Solicitar al usuario que introduzca el prompt
user_prompt = input('Cesar: ')
# Verificar si el usuario escribió 'adios' para terminar el bucle
if user_prompt.lower() == 'adios':
print('¡Hasta luego!')
break
# Generar la respuesta utilizando el prompt del usuario
response = ollama.generate(model='phi3', prompt=user_prompt)
# Imprimir la respuesta
print(response['response'])
Leave a Reply Cancel reply