quivr/backend/modules/assistant/entity/assistant.py
Stan Girard 1ffeb8f25d
feat: Add assistant module and remove ingestion module (#2420)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-04-10 04:28:22 -07:00

12 lines
194 B
Python

from uuid import UUID
from pydantic import BaseModel
class AssistantEntity(BaseModel):
id: UUID
name: str
brain_id_required: bool
file_1_required: bool
url_required: bool