(modelString: string)
| 280 | } |
| 281 | |
| 282 | function modelIdFromModelString(modelString: string): string { |
| 283 | return modelString.includes(":") ? (modelString.split(":").at(1) ?? modelString) : modelString; |
| 284 | } |
| 285 | |
| 286 | function stubCommonStreamMessageDependencies(args: { |
| 287 | service: AIService; |
no outgoing calls
no test coverage detected