Merge pull request #195 from Hexastack/184-bug-missing-chat-messages

fix(api): nlp-sample schema remove unique from text field
This commit is contained in:
Med Marrouchi 2024-10-11 05:45:21 +01:00 committed by GitHub
commit 3745d140fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ export class NlpSampleStub extends BaseSchema {
/**
* The content of the sample.
*/
@Prop({ type: String, required: true, unique: true })
@Prop({ type: String, required: true })
text: string;
/**