Compare commits

...

1 Commits

Author SHA1 Message Date
55919141b3 fix: [app] api message event name 2025-07-26 13:54:31 +08:00

View File

@ -34,13 +34,13 @@ const (
type RunEvent string type RunEvent string
const ( const (
RunEventCreated RunEvent = "conversation.run.created" RunEventCreated RunEvent = "conversation.chat.created"
RunEventInProgress RunEvent = "conversation.run.in_progress" RunEventInProgress RunEvent = "conversation.chat.in_progress"
RunEventCompleted RunEvent = "conversation.run.completed" RunEventCompleted RunEvent = "conversation.chat.completed"
RunEventFailed RunEvent = "conversation.run.failed" RunEventFailed RunEvent = "conversation.chat.failed"
RunEventExpired RunEvent = "conversation.run.expired" RunEventExpired RunEvent = "conversation.chat.expired"
RunEventCancelled RunEvent = "conversation.run.cancelled" RunEventCancelled RunEvent = "conversation.chat.cancelled"
RunEventRequiredAction RunEvent = "conversation.run.required_action" RunEventRequiredAction RunEvent = "conversation.chat.required_action"
RunEventMessageDelta RunEvent = "conversation.message.delta" RunEventMessageDelta RunEvent = "conversation.message.delta"
RunEventMessageCompleted RunEvent = "conversation.message.completed" RunEventMessageCompleted RunEvent = "conversation.message.completed"