Junjie
2026-04-27 913c02b7949bbb1eae9340e7d3cd05a148487152
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
package com.zy.ai.service;
 
import lombok.Data;
 
import java.io.Serializable;
 
public interface AutoTuneAgentService {
 
    AutoTuneAgentResult runAutoTune(String triggerType);
 
    @Data
    class AutoTuneAgentResult implements Serializable {
        private static final long serialVersionUID = 1L;
 
        private Boolean success;
 
        private String triggerType;
 
        private String summary;
 
        private Integer toolCallCount;
 
        private Integer llmCallCount;
 
        private Long promptTokens;
 
        private Long completionTokens;
 
        private Long totalTokens;
 
        private Boolean maxRoundsReached;
    }
}