changing to use openrouter

This commit is contained in:
2026-04-04 21:00:30 -03:00
parent a860bb8921
commit d0543544f8
6 changed files with 31 additions and 163 deletions

View File

@@ -6,8 +6,7 @@ import (
// Service defines the interface for connecting to LLMs
type Service interface {
SendOpenAIRequest(systemPrompt string, userPrompt string, model string) (string, error)
SendGeminiRequest(systemPrompt string, userPrompt string, model string) (string, error)
Send(systemPrompt string, userPrompt string) (string, error)
}
type llmService struct{}