File size: 355 Bytes
2f43b92
 
 
 
 
 
 
 
 
 
 
35e685d
 
f1cd69e
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import uuid

from pydantic import BaseModel
from typing import Optional

from sqlalchemy.dialects.postgresql import UUID

from sqlalchemy import Column, Integer, String, Boolean, ForeignKey
from sqlalchemy.orm import Mapped, mapped_column, relationship

from app.core.database import Base


class Transcription(BaseModel):
    text: str
    filename: str