feat: add vision support for Google (#141)

This commit is contained in:
Drew Hintz
2024-10-13 17:40:03 -05:00
committed by GitHub
parent 6ea6d1448d
commit 9679f07d09
2 changed files with 16 additions and 4 deletions
@@ -9,6 +9,7 @@ from exchange.providers import get_provider
cases = [
(get_provider("openai"), os.getenv("OPENAI_MODEL", "gpt-4o-mini")),
(get_provider("google"), os.getenv("GOOGLE_MODEL", "gemini-1.5-flash")),
]