File size: 258 Bytes
3f76ff4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
export type ModelTrace = {
  provider: "mock" | "live";
  model?: string;
  endpoint?: string;
  requestPreview?: string;
  responsePreview?: string;
};

export function compactTracePreview(value: string, max = 1200) {
  return value.trim().slice(0, max);
}