feat: update ResumeData type from map[string]any to map[string]string for consistency

This commit is contained in:
mlogclub
2026-04-14 11:47:13 +08:00
parent 48ad418f06
commit 2cb4866fce
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ func resolveCheckPointID(input string, runID string) string {
return "eino_cp_" + strings.TrimSpace(runID)
}
func buildResumeDataMessage(resumeData map[string]any) *schema.Message {
func buildResumeDataMessage(resumeData map[string]string) *schema.Message {
if len(resumeData) == 0 {
return nil
}