feat: Add url_required field to IngestionEntity (#2400)

This pull request adds a new field, `url_required`, to the
`IngestionEntity` class. This field is required for the ingestion
process and will be used to store the URL of the entity.
This commit is contained in:
Stan Girard 2024-04-01 18:57:11 -07:00 committed by GitHub
parent aa9a912cde
commit 5d4f5e4496
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,3 +8,4 @@ class IngestionEntity(BaseModel):
name: str
brain_id_required: bool
file_1_required: bool
url_required: bool