add google gemini support

This commit is contained in:
2024-10-06 22:16:26 -04:00
parent f4214f656b
commit 09447b0424
4 changed files with 306 additions and 0 deletions

4
llm.go
View File

@@ -57,3 +57,7 @@ func OpenAI(key string) LLM {
func Anthropic(key string) LLM {
return anthropic{key: key}
}
func Google(key string) LLM {
return google{key: key}
}