feat: created new property called used_to to usage model

main
adriano 2025-09-23 10:19:38 -03:00
parent 71f626af98
commit 6b9100fd2e
1 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,10 @@ const apiUsage = new Schema(
type: String, type: String,
enum: ["text", "audio", "image", "video"], enum: ["text", "audio", "image", "video"],
}, },
used_to: {
type: String,
enum: ["stt", "llm", "tts"],
},
}, },
{ timestamps: true } { timestamps: true }
); );