blob: 51717d02f6500d76e1cc4afb1f6c3b10ca1164f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* Pure catalog formatter — zero I/O.
*
* Formats a ModelsResponse into one model name per line.
*/
import type { ModelsResponse } from "@dispatch/transport-contract";
export function formatCatalog(r: ModelsResponse): string {
return r.models.join("\n");
}
|