* Get model information for display
()
| 138 | * Get model information for display |
| 139 | */ |
| 140 | getModelInfo(): { provider: string; name: string } | null { |
| 141 | if (!this.currentState.model) { |
| 142 | return null; |
| 143 | } |
| 144 | |
| 145 | return { |
| 146 | provider: this.currentState.model.provider, |
| 147 | name: (this.currentState.model as any).name || "unnamed", |
| 148 | }; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Get list of available chat models |
no outgoing calls
no test coverage detected