mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 20:12:55 +01:00
15 lines
No EOL
336 B
Python
15 lines
No EOL
336 B
Python
from typing import Any
|
|
|
|
import inflect
|
|
from sqlalchemy.ext.declarative import as_declarative, declared_attr
|
|
|
|
p = inflect.engine()
|
|
|
|
@as_declarative()
|
|
class Base:
|
|
id: Any
|
|
__name__: str
|
|
# Generate __tablename__ automatically
|
|
@declared_attr
|
|
def __tablename__(cls) -> str:
|
|
return p.plural(cls.__name__.lower()) |