| 1 | export interface ModelConfig { |
| 2 | id: string |
| 3 | name: string |
| 4 | systemPrompt: string |
| 5 | topP: number |
| 6 | temperature: number |
| 7 | createdAt: number |
| 8 | } |
| 9 | |
| 10 | export interface LLMConfig { |
| 11 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected