mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
451db2f5d8
* feat(channels): unify tool feedback animation across discord telegram and feishu * fix(tool-feedback): unify fallback and single-message delivery * fix(channels): finalize tool feedback in place * fix ci * feat: improve tool feedback * fix review blockers in pico token cache and tool feedback fix(provider): preserve function thought signatures fix(feishu): recover tool feedback after edit fallback * * delete dead code * fix(pico): clean up tool feedback progress state * fix ci * fix(web): preserve tool feedback line breaks in chat * fix(channels): preserve tool feedback progress state fix(pico): preserve context usage when finalizing tool feedback chore: record branch review pass fix: preserve tool feedback finalization state fix(web): handle pico history update fallback * fix ci
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
package pico
|
|
|
|
import "time"
|
|
|
|
// Protocol message types.
|
|
const (
|
|
// TypeMessageSend is sent from client to server.
|
|
TypeMessageSend = "message.send"
|
|
TypeMediaSend = "media.send"
|
|
TypePing = "ping"
|
|
|
|
// TypeMessageCreate is sent from server to client.
|
|
TypeMessageCreate = "message.create"
|
|
TypeMessageUpdate = "message.update"
|
|
TypeMessageDelete = "message.delete"
|
|
TypeMediaCreate = "media.create"
|
|
TypeTypingStart = "typing.start"
|
|
TypeTypingStop = "typing.stop"
|
|
TypeError = "error"
|
|
TypePong = "pong"
|
|
|
|
PayloadKeyContent = "content"
|
|
PayloadKeyThought = "thought"
|
|
|
|
MessageKindThought = "thought"
|
|
)
|
|
|
|
// PicoMessage is the wire format for all Pico Protocol messages.
|
|
type PicoMessage struct {
|
|
Type string `json:"type"`
|
|
ID string `json:"id,omitempty"`
|
|
SessionID string `json:"session_id,omitempty"`
|
|
Timestamp int64 `json:"timestamp,omitempty"`
|
|
Payload map[string]any `json:"payload,omitempty"`
|
|
}
|
|
|
|
// newMessage creates a PicoMessage with the given type and payload.
|
|
func newMessage(msgType string, payload map[string]any) PicoMessage {
|
|
return PicoMessage{
|
|
Type: msgType,
|
|
Timestamp: time.Now().UnixMilli(),
|
|
Payload: payload,
|
|
}
|
|
}
|
|
|
|
func isThoughtPayload(payload map[string]any) bool {
|
|
thought, _ := payload[PayloadKeyThought].(bool)
|
|
return thought
|
|
}
|
|
|
|
func newErrorWithPayload(code, message string, extra map[string]any) PicoMessage {
|
|
payload := map[string]any{
|
|
"code": code,
|
|
"message": message,
|
|
}
|
|
for key, value := range extra {
|
|
payload[key] = value
|
|
}
|
|
return newMessage(TypeError, payload)
|
|
}
|
|
|
|
// newError creates an error PicoMessage.
|
|
func newError(code, message string) PicoMessage {
|
|
return newErrorWithPayload(code, message, nil)
|
|
}
|