PromptCompressor Prompt 压缩器(使用 LLM 进行智能压缩)
| 571 | |
| 572 | // PromptCompressor Prompt 压缩器(使用 LLM 进行智能压缩) |
| 573 | type PromptCompressor struct { |
| 574 | TargetLength int |
| 575 | PreserveSections []string // 需要保留的段落标题 |
| 576 | } |
| 577 | |
| 578 | // Compress 压缩 Prompt(简化版,实际可以使用 LLM) |
| 579 | func (pc *PromptCompressor) Compress(prompt string) string { |
nothing calls this directly
no outgoing calls
no test coverage detected