Junjie
2026-04-27 0c336d5c5c0596691c9b33c08643c03486d47d5f
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;
    }
}