| 22 | ) |
| 23 | |
| 24 | type BaiduCloudModelProvider struct { |
| 25 | subType string |
| 26 | apiKey string |
| 27 | temperature float32 |
| 28 | topP float32 |
| 29 | } |
| 30 | |
| 31 | func NewBaiduCloudModelProvider(subType string, apiKey string, temperature float32, topP float32) (*BaiduCloudModelProvider, error) { |
| 32 | return &BaiduCloudModelProvider{ |
nothing calls this directly
no outgoing calls
no test coverage detected