MCPcopy
hub / github.com/jamiepine/voicebox / Generation

Interface Generation

landing/src/components/ControlUI.tsx:166–176  ·  view source on GitHub ↗

History rows pre-populated on first load. Oldest first visually (array index 0 = top row).

Source from the content-addressed store, hash-verified

164
165/** History rows pre-populated on first load. Oldest first visually (array index 0 = top row). */
166interface Generation {
167 id: number;
168 profileName: string;
169 text: string;
170 language: string;
171 engine: string;
172 duration: string;
173 timeAgo: string;
174 favorited: boolean;
175 versions: number;
176}
177
178const INITIAL_GENERATIONS: Generation[] = [
179 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected