Final commit
This commit is contained in:
parent
91fffb3294
commit
c35e0716af
372 changed files with 16591 additions and 1 deletions
19
backend/types/ai.ts
Normal file
19
backend/types/ai.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
export type AiSuggestionsOutput = {
|
||||
type: "success";
|
||||
songs: {
|
||||
title: string;
|
||||
artist: string;
|
||||
}[];
|
||||
} | {
|
||||
type: "error";
|
||||
error: string;
|
||||
};
|
||||
|
||||
export interface SongSearch {
|
||||
title: string;
|
||||
artist: string;
|
||||
}
|
||||
|
||||
export interface AiSnewuggestionOutput {
|
||||
songs: SongSearch[];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue