(ctx *gin.Context)
| 65 | } |
| 66 | |
| 67 | func (i *imlLocalModelController) OllamaConfig(ctx *gin.Context) (*ai_local_dto.OllamaConfig, error) { |
| 68 | cfg := i.settingModule.Get(ctx) |
| 69 | return &ai_local_dto.OllamaConfig{ |
| 70 | Address: cfg.OllamaAddress, |
| 71 | }, nil |
| 72 | } |
| 73 | |
| 74 | var ( |
| 75 | client = &http.Client{ |