| 182 | export type listResult = modelInfo[] |
| 183 | |
| 184 | export interface SessionInfo { |
| 185 | pid: number // opaque handle for unload/chat |
| 186 | port: number // llama-server output port (corrected from portid) |
| 187 | model_id: string //name of the model |
| 188 | is_embedding: boolean |
| 189 | api_key: string |
| 190 | } |
| 191 | |
| 192 | export interface UnloadResult { |
| 193 | success: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected