demo / src /ApiTypes.ts
kevinloffler
initial commit
e6a9f90
raw
history blame contribute delete
250 Bytes
export interface ExamplesResponse {
dirs: string[];
}
export interface GenerationResponse {
result_path: string;
}
export interface GenerationRequest {
version: string;
source: string;
llm_model: string;
llm_class: string;
}