Fix: remove name from episode

This commit is contained in:
Harshith Mullapudi 2025-06-18 01:04:23 +05:30
parent 7767acf71d
commit e313e7b26c
2 changed files with 0 additions and 2 deletions

View File

@ -76,7 +76,6 @@ export function getUserQueue(userId: string) {
}
export const IngestBodyRequest = z.object({
name: z.string(),
episodeBody: z.string(),
referenceTime: z.string(),
metadata: z.record(z.union([z.string(), z.number()])),

View File

@ -67,7 +67,6 @@ export interface Triple {
}
export type AddEpisodeParams = {
name: string;
episodeBody: string;
referenceTime: Date;
metadata: Record<string, any>;