OllamaShowRequest represents a request to the Ollama Show API
| 255 | |
| 256 | // OllamaShowRequest represents a request to the Ollama Show API |
| 257 | type OllamaShowRequest struct { |
| 258 | Name string `json:"name"` |
| 259 | Model string `json:"model"` |
| 260 | Verbose bool `json:"verbose,omitempty"` |
| 261 | } |
| 262 | |
| 263 | // ModelName implements the LocalAIRequest interface |
| 264 | func (r *OllamaShowRequest) ModelName(s *string) string { |
nothing calls this directly
no outgoing calls
no test coverage detected