()
| 56 | } |
| 57 | |
| 58 | func (i *imlSettingModule) OnInit() { |
| 59 | register.Handle(func(v server.Server) { |
| 60 | ctx := context.Background() |
| 61 | |
| 62 | address, has := i.settingService.Get(ctx, "system.ai_model.ollama_address") |
| 63 | if has { |
| 64 | ai_provider_local.ResetLocalAddress(address) |
| 65 | } |
| 66 | |
| 67 | }) |
| 68 | } |