// // Copyright 2026 The InfiniFlow Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // package models import ( "bytes" "context" "encoding/base64" "encoding/json" "fmt" "io" "net/http" "os" "path/filepath" "ragflow/internal/common" "strings" ) // OpenRouterModel implements ModelDriver for OpenRouter AI type OpenRouterModel struct { baseModel BaseModel } // NewOpenRouterModel creates a new OpenRouter AI model instance func NewOpenRouterModel(baseURL map[string]string, urlSuffix URLSuffix) *OpenRouterModel { return &OpenRouterModel{ baseModel: BaseModel{ BaseURL: baseURL, URLSuffix: urlSuffix, httpClient: NewDriverHTTPClient(), }, } } func (o *OpenRouterModel) NewInstance(baseURL map[string]string) ModelDriver { return NewOpenRouterModel(baseURL, o.baseModel.URLSuffix) } func (o *OpenRouterModel) Name() string { return "openrouter" } // OpenRouterChatResponse mirrors OpenRouter's chat-completions response. type OpenRouterChatResponse struct { ID string `json:"id"` Object string `json:"object"` Created int64 `json:"created"` Model string `json:"model"` Choices []struct { FinishReason string `json:"finish_reason"` Index int `json:"index"` Logprobs any `json:"logprobs"` Message struct { Content string `json:"content"` Reasoning string `json:"reasoning"` Role string `json:"role"` ToolCalls []map[string]any `json:"tool_calls"` } `json:"message"` } `json:"choices"` SystemFingerprint string `json:"system_fingerprint"` Usage struct { CompletionTokens int `json:"completion_tokens"` PromptTokens int `json:"prompt_tokens"` TotalTokens int `json:"total_tokens"` CompletionTokensDetails struct { ReasoningTokens int `json:"reasoning_tokens"` } `json:"completion_tokens_details"` PromptTokensDetails struct { CachedTokens int `json:"cached_tokens"` } `json:"prompt_tokens_details"` } `json:"usage"` } func (o *OpenRouterModel) ChatWithMessages(ctx context.Context, modelName string, messages []Message, apiConfig *APIConfig, chatModelConfig *ChatConfig, modelUsage *common.ModelUsage) (*ChatResponse, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } if len(messages) == 0 { return nil, fmt.Errorf("messages is empty") } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", resolvedBaseURL, o.baseModel.URLSuffix.Chat) reqBody := buildRequestBody(chatModelConfig, modelName, messages, false) if chatModelConfig != nil { if chatModelConfig.Effort != nil { reqBody["reasoning"] = map[string]interface{}{ "effort": chatModelConfig.Effort, } } } jsonData, err := json.Marshal(reqBody) if err != nil { return nil, fmt.Errorf("failed to marshal request: %w", err) } ctx, cancel := context.WithTimeout(ctx, nonStreamCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(jsonData)) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Add("Content-Type", "application/json") req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response body: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("failed to send request: %d %s", resp.StatusCode, string(body)) } return parseChatCompletionResponse(body, chatModelConfig, modelUsage, func(body []byte, chatConfig *ChatConfig) (chatResponseParts, error) { var result OpenRouterChatResponse if err := json.Unmarshal(body, &result); err != nil { return chatResponseParts{}, fmt.Errorf("failed to unmarshal response: %w", err) } if len(result.Choices) == 0 { return chatResponseParts{}, fmt.Errorf("no choices in response") } choice := result.Choices[0] if choice.Message.Content == "" && len(choice.Message.ToolCalls) == 0 { return chatResponseParts{}, fmt.Errorf("response contains neither content nor tool calls") } reasonContent := "" if chatConfig != nil && chatConfig.Thinking != nil && *chatConfig.Thinking { reasonContent = strings.TrimPrefix(choice.Message.Reasoning, "\n") } return chatResponseParts{ RequestID: result.ID, Content: &choice.Message.Content, ReasonContent: &reasonContent, ToolCalls: choice.Message.ToolCalls, Usage: &TokenUsage{ PromptTokens: result.Usage.PromptTokens, CompletionTokens: result.Usage.CompletionTokens, TotalTokens: result.Usage.TotalTokens, }, }, nil }) } func (o *OpenRouterModel) ChatStreamlyWithSender(ctx context.Context, modelName string, messages []Message, apiConfig *APIConfig, modelConfig *ChatConfig, modelUsage *common.ModelUsage, sender func(*string, *string) error) error { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return err } if len(messages) == 0 { return fmt.Errorf("messages is empty") } if modelConfig != nil { modelConfig.ToolCallsResult = nil modelConfig.UsageResult = nil } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return err } // All OpenRouter models use the standard chat-completions endpoint, same as // the non-stream path. The previous qwen/glm branch routed to URLSuffix.AsyncChat, // which OpenRouter does not configure (empty suffix) — producing a broken URL and // breaking streaming for every qwen/glm model. url := fmt.Sprintf("%s/%s", resolvedBaseURL, o.baseModel.URLSuffix.Chat) reqBody := buildRequestBody(modelConfig, modelName, messages, true) reqBody["stream_options"] = map[string]any{"include_usage": true} if modelConfig != nil { if modelConfig.Thinking != nil { reqBody["reasoning"] = map[string]interface{}{"enabled": *modelConfig.Thinking} } if modelConfig.Effort != nil { reqBody["reasoning"] = map[string]interface{}{"effort": *modelConfig.Effort} } } jsonData, err := json.Marshal(reqBody) if err != nil { return fmt.Errorf("failed to marshal request: %w", err) } ctx, cancel := context.WithTimeout(ctx, streamCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(jsonData)) if err != nil { return fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() if resp.StatusCode != http.StatusOK { body, _ := io.ReadAll(resp.Body) return fmt.Errorf("invalid status code: %d, body: %s", resp.StatusCode, string(body)) } sawTerminal := false accumulatedToolCalls := make(map[int]map[string]any) done, err := ParseSSEStream[map[string]any](resp.Body, func(event map[string]any) error { common.Info(fmt.Sprintf("%v", event)) tokenUsage, found, usageErr := decodeOpenAICompatibleStreamUsage(event) if usageErr != nil { return usageErr } if found { applyStreamUsage(modelConfig, modelUsage, tokenUsage) } choices, ok := event["choices"].([]any) if !ok || len(choices) == 0 { return nil } choice, ok := choices[0].(map[string]any) if !ok { return nil } if finishReason, ok := choice["finish_reason"].(string); ok && finishReason != "" { sawTerminal = true } delta, ok := choice["delta"].(map[string]any) if !ok { return nil } accumulateToolCallDeltas(delta, accumulatedToolCalls) reasoningContent, ok := delta["reasoning"].(string) if ok && reasoningContent != "" { if err := sender(nil, &reasoningContent); err != nil { return err } } content, ok := delta["content"].(string) if ok && content != "" { if err := sender(&content, nil); err != nil { return err } } return nil }) if err != nil { return fmt.Errorf("failed to scan response body: %w", err) } if !done && !sawTerminal { return fmt.Errorf("openrouter: stream ended before [DONE] or finish_reason") } setSortedToolCallsResult(modelConfig, accumulatedToolCalls) // Send [DONE] marker for OpenAI compatibility endOfStream := "[DONE]" if err = sender(&endOfStream, nil); err != nil { return err } return nil } // OpenRouterEmbeddingResponse mirrors OpenRouter's embeddings response. type OpenRouterEmbeddingResponse struct { ID string `json:"id"` Object string `json:"object"` Model string `json:"model"` Data []struct { Object string `json:"object"` Embedding []float64 `json:"embedding"` Index int `json:"index"` } `json:"data"` Usage struct { PromptTokens int `json:"prompt_tokens"` CompletionTokens int `json:"completion_tokens"` TotalTokens int `json:"total_tokens"` } `json:"usage"` } func (o *OpenRouterModel) Embed(ctx context.Context, modelName *string, texts []string, apiConfig *APIConfig, embeddingConfig *EmbeddingConfig, modelUsage *common.ModelUsage) ([]EmbeddingData, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } if len(texts) == 0 { return []EmbeddingData{}, nil } if modelName == nil || *modelName == "" { return nil, fmt.Errorf("model name is required") } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", resolvedBaseURL, o.baseModel.URLSuffix.Embedding) reqBody := map[string]interface{}{ "model": *modelName, "input": texts, } if embeddingConfig != nil && embeddingConfig.Dimension > 0 { reqBody["dimensions"] = embeddingConfig.Dimension } jsonData, err := json.Marshal(reqBody) if err != nil { return nil, fmt.Errorf("failed to marshal request: %w", err) } ctx, cancel := context.WithTimeout(ctx, nonStreamCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(jsonData)) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("OpenRouter embedding API error: status %d, body: %s", resp.StatusCode, string(body)) } var parsed OpenRouterEmbeddingResponse if err = json.Unmarshal(body, &parsed); err != nil { return nil, fmt.Errorf("failed to parse response: %w", err) } recordResponseUsage(modelUsage, parsed.ID, &TokenUsage{ PromptTokens: parsed.Usage.PromptTokens, CompletionTokens: parsed.Usage.CompletionTokens, TotalTokens: parsed.Usage.TotalTokens, }, "embedding") var embeddings []EmbeddingData for _, dataElem := range parsed.Data { var embeddingData EmbeddingData embeddingData.Embedding = dataElem.Embedding embeddingData.Index = dataElem.Index embeddings = append(embeddings, embeddingData) } return embeddings, nil } // OpenRouterRerankRequest OpenRouter official rerank request format type OpenRouterRerankRequest struct { Model string `json:"model"` Query string `json:"query"` Documents []string `json:"documents"` TopN int `json:"top_n,omitempty"` } // OpenRouterRerankResponse OpenRouter official rerank response format type OpenRouterRerankResponse struct { Model string `json:"model"` ID string `json:"id"` Results []struct { Index int `json:"index"` RelevanceScore float64 `json:"relevance_score"` Document *struct { Text string `json:"text"` } `json:"document,omitempty"` } `json:"results"` Usage struct { PromptTokens int `json:"prompt_tokens"` CompletionTokens int `json:"completion_tokens"` TotalTokens int `json:"total_tokens"` } `json:"usage"` } func (o *OpenRouterModel) Rerank(ctx context.Context, modelName *string, query string, documents []string, apiConfig *APIConfig, rerankConfig *RerankConfig, modelUsage *common.ModelUsage) (*RerankResponse, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } if len(documents) == 0 { return &RerankResponse{}, nil } if modelName == nil || strings.TrimSpace(*modelName) == "" { return nil, fmt.Errorf("model name is required") } topN := len(documents) if rerankConfig != nil && rerankConfig.TopN > 0 { topN = rerankConfig.TopN } reqBody := OpenRouterRerankRequest{ Model: *modelName, Query: query, Documents: documents, TopN: topN, } jsonData, err := json.Marshal(reqBody) if err != nil { return nil, fmt.Errorf("failed to marshal request: %w", err) } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", strings.TrimSuffix(resolvedBaseURL, "/"), o.baseModel.URLSuffix.Rerank) ctx, cancel := context.WithTimeout(ctx, nonStreamCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(jsonData)) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("OpenRouter Rerank API error: %s, body: %s", resp.Status, string(body)) } var rerankResp OpenRouterRerankResponse if err = json.Unmarshal(body, &rerankResp); err != nil { return nil, fmt.Errorf("failed to decode response: %w", err) } recordResponseUsage(modelUsage, rerankResp.ID, &TokenUsage{ PromptTokens: rerankResp.Usage.PromptTokens, CompletionTokens: rerankResp.Usage.CompletionTokens, TotalTokens: rerankResp.Usage.TotalTokens, }, "rerank") var rerankResponse RerankResponse for _, result := range rerankResp.Results { rerankResult := RerankResult{ Index: result.Index, RelevanceScore: result.RelevanceScore, } rerankResponse.Data = append(rerankResponse.Data, rerankResult) } return &rerankResponse, nil } type openRouterTranscriptionResponse struct { Text string `json:"text"` } func openRouterAudioFormat(file string, asrConfig *ASRConfig) string { if asrConfig != nil && asrConfig.Params != nil { if format, ok := asrConfig.Params["format"]; ok && format != nil { if value := strings.TrimPrefix(fmt.Sprint(format), "."); value != "" { return value } } } ext := strings.TrimPrefix(strings.ToLower(filepath.Ext(file)), ".") if ext == "" { return "wav" } return ext } // TranscribeAudio transcribe audio func (o *OpenRouterModel) TranscribeAudio(ctx context.Context, modelName *string, file *string, apiConfig *APIConfig, asrConfig *ASRConfig, modelUsage *common.ModelUsage) (*ASRResponse, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } if modelName == nil || *modelName == "" { return nil, fmt.Errorf("model name is required") } if file == nil || *file == "" { return nil, fmt.Errorf("file is missing") } if o.baseModel.URLSuffix.ASR == "" { return nil, fmt.Errorf("OpenRouter ASR url suffix is missing") } // codeql[go/path-injection] False positive: *file is the audio file path the caller passes in to upload. The user (or operator-supplied pipeline) explicitly chose this path, and the OS access check enforces permissions anyway. audio, err := os.ReadFile(*file) if err != nil { return nil, fmt.Errorf("failed to read audio file: %w", err) } reqBody := map[string]interface{}{ "model": *modelName, "input_audio": map[string]interface{}{ "data": base64.StdEncoding.EncodeToString(audio), "format": openRouterAudioFormat(*file, asrConfig), }, } if asrConfig != nil && asrConfig.Params != nil { for key, value := range asrConfig.Params { switch key { case "format", "model", "input_audio": continue } reqBody[key] = value } } jsonData, err := json.Marshal(reqBody) if err != nil { return nil, fmt.Errorf("failed to marshal request: %w", err) } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", strings.TrimSuffix(resolvedBaseURL, "/"), o.baseModel.URLSuffix.ASR) ctx, cancel := context.WithTimeout(ctx, longOpCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(jsonData)) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response body: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("OpenRouter ASR API error: %s, body: %s", resp.Status, string(body)) } var result openRouterTranscriptionResponse if err = json.Unmarshal(body, &result); err != nil { return nil, fmt.Errorf("failed to parse transcription response: %w", err) } return &ASRResponse{Text: result.Text}, nil } func (o *OpenRouterModel) TranscribeAudioWithSender(ctx context.Context, modelName *string, file *string, apiConfig *APIConfig, asrConfig *ASRConfig, modelUsage *common.ModelUsage, sender func(*string, *string) error) error { return fmt.Errorf("%s, no such method", o.Name()) } // AudioSpeech convert text to audio func (o *OpenRouterModel) AudioSpeech(ctx context.Context, modelName *string, audioContent *string, apiConfig *APIConfig, ttsConfig *TTSConfig, modelUsage *common.ModelUsage) (*TTSResponse, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } if audioContent == nil || *audioContent == "" { return nil, fmt.Errorf("text content is empty") } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", resolvedBaseURL, o.baseModel.URLSuffix.TTS) // OpenRouter:response Audio bytes stream reqBody := map[string]interface{}{ "model": modelName, "input": audioContent, } if ttsConfig != nil && ttsConfig.Params != nil { for key, value := range ttsConfig.Params { reqBody[key] = value } } if ttsConfig != nil && ttsConfig.Format != "" { reqBody["response_format"] = ttsConfig.Format } jsonData, err := json.Marshal(reqBody) if err != nil { return nil, fmt.Errorf("failed to marshal request: %w", err) } ctx, cancel := context.WithTimeout(ctx, longOpCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewBuffer(jsonData)) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response body: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("OpenRouter API error: %s, body: %s", resp.Status, string(body)) } return &TTSResponse{Audio: body}, nil } func (o *OpenRouterModel) AudioSpeechWithSender(ctx context.Context, modelName *string, audioContent *string, apiConfig *APIConfig, ttsConfig *TTSConfig, modelUsage *common.ModelUsage, sender func(*string, *string) error) error { return fmt.Errorf("%s, no such method", o.Name()) } // OCRFile OCR file func (o *OpenRouterModel) OCRFile(ctx context.Context, modelName *string, content []byte, url *string, apiConfig *APIConfig, ocrConfig *OCRConfig, modelUsage *common.ModelUsage) (*OCRFileResponse, error) { return nil, fmt.Errorf("%s, no such method", o.Name()) } // ParseFile parse file func (o *OpenRouterModel) ParseFile(ctx context.Context, modelName *string, content []byte, url *string, apiConfig *APIConfig, parseFileConfig *ParseFileConfig, modelUsage *common.ModelUsage) (*ParseFileResponse, error) { return nil, fmt.Errorf("%s, no such method", o.Name()) } func (o *OpenRouterModel) ListModels(ctx context.Context, apiConfig *APIConfig) ([]ListModelResponse, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } resolvedBaseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", resolvedBaseURL, o.baseModel.URLSuffix.Models) // Build request body reqBody := map[string]interface{}{} jsonData, err := json.Marshal(reqBody) if err != nil { return nil, fmt.Errorf("failed to marshal request: %w", err) } ctx, cancel := context.WithTimeout(ctx, nonStreamCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "GET", url, bytes.NewBuffer(jsonData)) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("API request failed with status %d: %s", resp.StatusCode, string(body)) } // Parse response // Parse response var modelList ModelList if err = json.Unmarshal(body, &modelList); err != nil { return nil, fmt.Errorf("failed to parse response: %w", err) } if modelList.Models == nil { return nil, fmt.Errorf("invalid models list format") } return ParseListModel(modelList), nil } func (o *OpenRouterModel) Balance(ctx context.Context, apiConfig *APIConfig) (map[string]interface{}, error) { if err := o.baseModel.APIConfigCheck(apiConfig); err != nil { return nil, err } baseURL, err := o.baseModel.GetBaseURL(apiConfig) if err != nil { return nil, err } url := fmt.Sprintf("%s/%s", baseURL, o.baseModel.URLSuffix.Balance) ctx, cancel := context.WithTimeout(ctx, nonStreamCallTimeout) defer cancel() req, err := http.NewRequestWithContext(ctx, "GET", url, nil) if err != nil { return nil, fmt.Errorf("failed to create request: %w", err) } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", *apiConfig.ApiKey)) resp, err := o.baseModel.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("failed to send request: %w", err) } defer resp.Body.Close() body, err := io.ReadAll(resp.Body) if err != nil { return nil, fmt.Errorf("failed to read response: %w", err) } if resp.StatusCode != http.StatusOK { return nil, fmt.Errorf("API request failed with status %d: %s", resp.StatusCode, string(body)) } var result struct { Data struct { TotalCredits float64 `json:"total_credits"` TotalUsage float64 `json:"total_usage"` } `json:"data"` } if err := json.Unmarshal(body, &result); err != nil { return nil, fmt.Errorf("failed to parse balance response: %w", err) } remainingBalance := result.Data.TotalCredits - result.Data.TotalUsage return map[string]interface{}{ "total_credits": result.Data.TotalCredits, "total_usage": result.Data.TotalUsage, "balance": remainingBalance, "currency": "USD", }, nil } func (o *OpenRouterModel) CheckConnection(ctx context.Context, apiConfig *APIConfig) error { _, err := o.Balance(ctx, apiConfig) return err } func (o *OpenRouterModel) ListTasks(ctx context.Context, apiConfig *APIConfig) ([]ListTaskStatus, error) { return nil, fmt.Errorf("%s, no such method", o.Name()) } func (o *OpenRouterModel) ShowTask(ctx context.Context, taskID string, apiConfig *APIConfig) (*TaskResponse, error) { return nil, fmt.Errorf("%s, no such method", o.Name()) }