LangChain / app /crud /__init__.py
dcd018's picture
Initial commit.
b88c922
Raw
History Blame Contribute Delete
308 Bytes
from .crud_project import project
from .crud_task import task
# For a new basic set of CRUD operations you could just do
# from .base import CRUDBase
# from app.models.document import Item
# from app.schemas.document import ItemCreate, ItemUpdate
# document = CRUDBase[Item, ItemCreate, ItemUpdate](Item)