Merge pull request #7 from icwhite/add-ollama-evaluation

Add ollama evaluation
This commit is contained in:
Isadora White 2025-03-17 12:38:32 -07:00 committed by GitHub
commit dd5dd72381
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -459,6 +459,12 @@ def make_profiles(agent_names, models, apis, template_profile="profiles/collab_p
"model": models[index],
"url": url
}
elif apis[index] == "ollama":
profile["model"] = {
"api": "ollama",
"model": models[index],
"embedding": "ollama"
}
else:
profile["model"] = models[index]