from edsl import Model,QuestionFreeTextollama_models = Model.available(service_name="ollama",force_refresh=True)ollama_models
ModelList(...)
model = Model('llama3.1:latest')q = QuestionFreeText( question_name="q1", question_text="What is the capital of France?")res = q.by(model).run(cache=False,disable_remote_inference=True)res.select("answer.*")