()
| 22 | } |
| 23 | |
| 24 | async getAllConfigs(): Promise<AIServiceConfigDisplay[]> { |
| 25 | const store = await this.getConfigStore() |
| 26 | return store.configs |
| 27 | } |
| 28 | |
| 29 | async getDefaultAssistantSlot(): Promise<ModelSlot | null> { |
| 30 | return get<ModelSlot | null>('/ai/llm/default-assistant-slot') |
nothing calls this directly
no test coverage detected