(name string)
| 47 | } |
| 48 | |
| 49 | func (p *OpenAIProvider) SetModel(name string) { |
| 50 | p.mu.Lock() |
| 51 | defer p.mu.Unlock() |
| 52 | p.model = name |
| 53 | } |
| 54 | |
| 55 | func (p *OpenAIProvider) TotalUsage() api.Usage { |
| 56 | p.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected