()
| 7 | type SimpleEngine struct{} |
| 8 | |
| 9 | func NewSimpleEngine() *SimpleEngine { |
| 10 | return &SimpleEngine{} |
| 11 | } |
| 12 | |
| 13 | func (e *SimpleEngine) Estimate(req types.AIRequest, backend types.BackendMetadata) types.CostEstimate { |
| 14 | maxTokens := req.Options.MaxTokens |
no outgoing calls