mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-18 03:57:06 +08:00
24 lines
741 B
Go
24 lines
741 B
Go
package forwarder
|
|
|
|
type commitMessageLogRecorder struct{}
|
|
|
|
func newCommitMessageLogRecorder(_ string, _ string) (*commitMessageLogRecorder, error) {
|
|
return &commitMessageLogRecorder{}, nil
|
|
}
|
|
|
|
func (recorder *commitMessageLogRecorder) RecordLLMRequest(_ string, _ string, _ string, _ map[string]any) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (recorder *commitMessageLogRecorder) AppendLLMResponseChunk(_ string, _ string, _ string, _ string) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (recorder *commitMessageLogRecorder) RecordLLMSummary(_ string, _ string, _ string, _ map[string]any) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (recorder *commitMessageLogRecorder) appendEvent(_ string, _ map[string]any) (string, error) {
|
|
return "", nil
|
|
}
|