- Integrated trace management into the Assistant's Stream method, allowing for detailed logging of processing steps and errors. - Improved error handling in the OpenAI stream and post methods, adding trace logs for retries and failures. - Enhanced CUI and OpenAI writers to log message adaptation and sending errors, improving debugging capabilities. - Updated trace manager to use milliseconds for timestamps, ensuring consistency across the trace system. - Refactored log methods in the trace node to streamline logging and broadcasting of events.
159 lines
4.1 KiB
Go
159 lines
4.1 KiB
Go
package openai
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/yaoapp/yao/agent/context"
|
|
"github.com/yaoapp/yao/agent/output/message"
|
|
)
|
|
|
|
// Writer implements the message.Writer interface for OpenAI-compatible clients
|
|
type Writer struct {
|
|
ctx *context.Context
|
|
adapter *Adapter
|
|
firstChunk bool // Track if this is the first chunk to add role
|
|
}
|
|
|
|
// NewWriter creates a new OpenAI writer
|
|
func NewWriter(ctx *context.Context) (*Writer, error) {
|
|
// Create adapter with default config
|
|
adapter := NewAdapter()
|
|
|
|
return &Writer{
|
|
ctx: ctx,
|
|
adapter: adapter,
|
|
firstChunk: true, // First chunk should include role
|
|
}, nil
|
|
}
|
|
|
|
// Write writes a single message to the output stream
|
|
func (w *Writer) Write(msg *message.Message) error {
|
|
// Convert message to OpenAI format using adapter
|
|
chunks, err := w.adapter.Adapt(msg)
|
|
if err != nil {
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Error("OpenAI Writer: Failed to adapt message", map[string]any{
|
|
"error": err.Error(),
|
|
"message_type": msg.Type,
|
|
})
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Send each chunk
|
|
for _, chunk := range chunks {
|
|
// Add role to first text chunk
|
|
if w.firstChunk && (msg.Type == message.TypeText || msg.Type == message.TypeThinking) {
|
|
if chunkMap, ok := chunk.(map[string]interface{}); ok {
|
|
if choices, ok := chunkMap["choices"].([]map[string]interface{}); ok && len(choices) > 0 {
|
|
if delta, ok := choices[0]["delta"].(map[string]interface{}); ok {
|
|
delta["role"] = "assistant"
|
|
w.firstChunk = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if err := w.sendChunk(chunk); err != nil {
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Error("OpenAI Writer: Failed to send chunk", map[string]any{
|
|
"error": err.Error(),
|
|
})
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// WriteGroup writes a message group to the output stream
|
|
func (w *Writer) WriteGroup(group *message.MessageGroup) error {
|
|
// For OpenAI, we don't send group markers
|
|
// Just send each message individually
|
|
for _, msg := range group.Messages {
|
|
if err := w.Write(msg); err != nil {
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Error("OpenAI Writer: Failed to write message in group", map[string]any{
|
|
"error": err.Error(),
|
|
"group_id": group.ID,
|
|
"message_type": msg.Type,
|
|
})
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Flush flushes any buffered data to the output stream
|
|
func (w *Writer) Flush() error {
|
|
// For SSE, we don't need explicit flushing
|
|
// The underlying connection handles it
|
|
return nil
|
|
}
|
|
|
|
// Close closes the writer and cleans up resources
|
|
func (w *Writer) Close() error {
|
|
// Send final [DONE] message for OpenAI compatibility
|
|
return w.sendDone()
|
|
}
|
|
|
|
// sendChunk sends a chunk to the output stream in SSE format
|
|
func (w *Writer) sendChunk(chunk interface{}) error {
|
|
// Convert chunk to JSON
|
|
data, err := json.Marshal(chunk)
|
|
if err != nil {
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Error("OpenAI Writer: Failed to marshal chunk", map[string]any{
|
|
"error": err.Error(),
|
|
})
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Format as SSE: "data: {json}\n\n"
|
|
sseData := append([]byte("data: "), data...)
|
|
sseData = append(sseData, []byte("\n\n")...)
|
|
|
|
// Log outgoing data to trace for debugging
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Debug("OpenAI Writer: Sending chunk to client", map[string]any{
|
|
"data": string(data),
|
|
})
|
|
}
|
|
|
|
// Send via context's writer
|
|
if err := w.ctx.Send(sseData); err != nil {
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Error("OpenAI Writer: Failed to send data to client", map[string]any{
|
|
"error": err.Error(),
|
|
})
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// sendDone sends the final [DONE] message
|
|
func (w *Writer) sendDone() error {
|
|
// Log completion to trace
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Debug("OpenAI Writer: Sending [DONE] to client")
|
|
}
|
|
|
|
// OpenAI SSE format uses "data: [DONE]\n\n" to signal completion
|
|
doneData := []byte("data: [DONE]\n\n")
|
|
if err := w.ctx.Send(doneData); err != nil {
|
|
if trace, _ := w.ctx.Trace(); trace != nil {
|
|
trace.Error("OpenAI Writer: Failed to send [DONE] to client", map[string]any{
|
|
"error": err.Error(),
|
|
})
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|