Jade/RequestAnthropic.go
MrBounty edd5c58a7b Lots of fix
Can now add new api key again, and some minor bugs
2024-08-14 17:52:30 +02:00

157 lines
4.9 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import (
"bytes"
"encoding/json"
"io"
"net/http"
"strings"
"github.com/gofiber/fiber/v2"
)
type AnthropicChatCompletionRequest struct {
Model string `json:"model"`
Messages []RequestMessage `json:"messages"`
MaxTokens int `json:"max_tokens"`
Temperature float64 `json:"temperature"`
Context string `json:"system"`
}
type AnthropicChatCompletionResponse struct {
ID string `json:"id"`
Content []AnthropicContentItem `json:"content"`
Model string `json:"model"`
StopReason string `json:"stop_reason"`
StopSequence string `json:"stop_sequence"`
Usage AnthropicUsage `json:"usage"`
}
type AnthropicContentItem struct {
Text string `json:"text"`
}
type AnthropicUsage struct {
InputTokens int32 `json:"input_tokens"`
OutputTokens int32 `json:"output_tokens"`
}
var AnthropicErrorCodes map[string]string
func init() {
AnthropicErrorCodes = make(map[string]string)
AnthropicErrorCodes["400"] = "Provider error: Invalid Request - Please contact the support."
AnthropicErrorCodes["401"] = "Provider error: Invalid Authentication - Ensure that the API key is still valid."
AnthropicErrorCodes["403"] = "Provider error: Current API key does not have permission to use the specified resource."
AnthropicErrorCodes["404"] = "Provider error: The requested resource was not found."
AnthropicErrorCodes["413"] = "Provider error: Request exceeds the maximum allowed number of bytes."
AnthropicErrorCodes["429"] = "Provider error: Your account has hit a rate limit."
AnthropicErrorCodes["500"] = "Provider error: An unexpected error has occurred internal to Anthropics systems."
AnthropicErrorCodes["529"] = "Provider error: Anthropics server is temporarily overloaded."
}
func RequestAnthropic(c *fiber.Ctx, llm LLM, messages []Message, testApiKey string) string {
model := llm.Model.ModelID
temperature := float64(llm.Temperature)
context := llm.Context
maxTokens := int(llm.MaxToken)
if maxTokens == 0 {
maxTokens = 4096
}
var apiKey struct {
Key string `edgedb:"key"`
}
if testApiKey == "" {
err := edgeGlobalClient.WithGlobals(map[string]interface{}{"ext::auth::client_token": c.Cookies("jade-edgedb-auth-token")}).QuerySingle(edgeCtx, `
SELECT Key {
key
}
FILTER .<keys[is Setting].<setting[is User] = global currentUser and .company.name = "anthropic"
LIMIT 1
`, &apiKey, "anthropic")
if err != nil {
return "JADE internal error: 01-00-0000. Please contact the support."
}
} else {
apiKey.Key = testApiKey
}
url := "https://api.anthropic.com/v1/messages"
requestBody := AnthropicChatCompletionRequest{
Model: model,
Messages: Message2RequestMessage(messages, ""),
MaxTokens: maxTokens,
Temperature: temperature,
Context: context,
}
jsonBody, err := json.Marshal(requestBody)
if err != nil {
logErrorCode.Println("01-01-0001")
return "JADE internal error: 01-01-0001. Please contact the support."
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonBody))
if err != nil {
logErrorCode.Println("01-02-0002")
return "JADE internal error: 01-02-0002. Please contact the support."
}
req.Header.Set("x-api-key", apiKey.Key)
req.Header.Set("content-Type", "application/json")
req.Header.Set("anthropic-version", "2023-06-01")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
logErrorCode.Println("01-02-0003")
return "JADE internal error: 01-02-0003. Please contact the support."
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
logErrorCode.Println("01-01-0004")
return "JADE internal error: 01-01-0004. Please contact the support."
}
for key, value := range AnthropicErrorCodes {
if strings.Contains(resp.Status, key) {
return value
}
}
var chatCompletionResponse AnthropicChatCompletionResponse
err = json.Unmarshal(body, &chatCompletionResponse)
if err != nil {
logErrorCode.Println("01-01-0005")
return "JADE internal error: 01-01-0005. Please contact the support."
}
if testApiKey != "" {
return chatCompletionResponse.Content[0].Text
}
var usedModelInfo ModelInfo
usedModelInfo, found := getModelInfoByID(llm.Model.ID)
if !found {
logErrorCode.Println("01-00-0006")
return "JADE internal error: 01-00-0006. Please contact the support."
}
var inputCost float32 = float32(chatCompletionResponse.Usage.InputTokens) * usedModelInfo.InputPrice
var outputCost float32 = float32(chatCompletionResponse.Usage.OutputTokens) * usedModelInfo.OutputPrice
addUsage(c, inputCost, outputCost, chatCompletionResponse.Usage.InputTokens, chatCompletionResponse.Usage.OutputTokens, model)
if len(chatCompletionResponse.Content) == 0 {
logErrorCode.Println("01-03-0007 -", resp.Status, "-", string(body))
return "JADE internal error: 01-03-0007. Please contact the support."
}
return chatCompletionResponse.Content[0].Text
}