forked from charmbracelet/mods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cohere.go
153 lines (130 loc) · 3.7 KB
/
cohere.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package main
import (
"context"
"encoding/json"
"errors"
"io"
"net/http"
cohere "github.com/cohere-ai/cohere-go/v2"
"github.com/cohere-ai/cohere-go/v2/client"
"github.com/cohere-ai/cohere-go/v2/core"
coherecore "github.com/cohere-ai/cohere-go/v2/core"
"github.com/cohere-ai/cohere-go/v2/option"
openai "github.com/sashabaranov/go-openai"
)
// CohereClientConfig represents the configuration for the Cohere API client.
type CohereClientConfig struct {
AuthToken string
BaseURL string
HTTPClient *http.Client
EmptyMessagesLimit uint
}
// DefaultCohereConfig returns the default configuration for the Cohere API client.
func DefaultCohereConfig(authToken string) CohereClientConfig {
return CohereClientConfig{
AuthToken: authToken,
BaseURL: "",
HTTPClient: &http.Client{},
}
}
// CohereClient is a client for the Cohere API.
type CohereClient struct {
*client.Client
}
// NewCohereClient creates a new [client.Client] with the given configuration.
func NewCohereClientWithConfig(config CohereClientConfig) *CohereClient {
opts := []option.RequestOption{
client.WithToken(config.AuthToken),
client.WithHTTPClient(config.HTTPClient),
}
if config.BaseURL != "" {
opts = append(opts, client.WithBaseURL(config.BaseURL))
}
return &CohereClient{
Client: client.NewClient(opts...),
}
}
// CohereChatCompletionStream represents a stream for chat completion.
type CohereChatCompletionStream struct {
*cohereStreamReader
}
type cohereStreamReader struct {
*core.Stream[cohere.StreamedChatResponse]
}
// Recv reads the next response from the stream.
func (stream *cohereStreamReader) Recv() (response openai.ChatCompletionStreamResponse, err error) {
return stream.processMessages()
}
// Close closes the stream.
func (stream *cohereStreamReader) Close() error {
return stream.Stream.Close()
}
func (stream *cohereStreamReader) processMessages() (openai.ChatCompletionStreamResponse, error) {
for {
message, err := stream.Stream.Recv()
if err != nil {
if errors.Is(err, io.EOF) {
return *new(openai.ChatCompletionStreamResponse), io.EOF
}
return *new(openai.ChatCompletionStreamResponse), err
}
if message.EventType != "text-generation" {
continue
}
// NOTE: Leverage the existing logic based on OpenAI ChatCompletionStreamResponse by
// converting the Cohere events into them.
response := openai.ChatCompletionStreamResponse{
Choices: []openai.ChatCompletionStreamChoice{
{
Index: 0,
Delta: openai.ChatCompletionStreamChoiceDelta{
Content: message.TextGeneration.Text,
Role: "assistant",
},
},
},
}
return response, nil
}
}
// CreateChatCompletionStream — API call to create a chat completion w/ streaming
// support.
func (c *CohereClient) CreateChatCompletionStream(
ctx context.Context,
request *cohere.ChatStreamRequest,
) (stream *CohereChatCompletionStream, err error) {
resp, err := c.ChatStream(ctx, request)
if err != nil {
return
}
stream = &CohereChatCompletionStream{
cohereStreamReader: &cohereStreamReader{
Stream: resp,
},
}
return
}
// CohereToOpenAIAPIError attempts to convert a Cohere API error into
// an OpenAI API error to later reuse the existing error handling logic.
func CohereToOpenAIAPIError(err error) error {
ce := &coherecore.APIError{}
if !errors.As(err, &ce) {
return err
}
unwrapped := ce.Unwrap()
if unwrapped == nil {
unwrapped = err
}
var message string
var body map[string]interface{}
if err := json.Unmarshal([]byte(unwrapped.Error()), &body); err == nil {
message, _ = body["message"].(string)
}
if message == "" {
message = unwrapped.Error()
}
return &openai.APIError{
HTTPStatusCode: ce.StatusCode,
Message: message,
}
}