36 lines
2.0 KiB
Python
36 lines
2.0 KiB
Python
from sqlalchemy import DateTime, ForeignKey, Integer, String, Text, func
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.models.base import Base
|
|
from app.utils.id_gen import generate_id
|
|
|
|
|
|
class ChatProviderCallLog(Base):
|
|
"""Provider call audit log for chat_generation_tasks."""
|
|
|
|
__tablename__ = "chat_provider_call_logs"
|
|
|
|
id: Mapped[str] = mapped_column(String(32), primary_key=True, default=generate_id)
|
|
task_id: Mapped[str] = mapped_column(
|
|
String(32), ForeignKey("chat_generation_tasks.id", ondelete="CASCADE"), index=True
|
|
)
|
|
generation_mode: Mapped[str | None] = mapped_column(String(32), nullable=True, index=True)
|
|
provider: Mapped[str | None] = mapped_column(String(64), nullable=True, index=True)
|
|
api_type: Mapped[str] = mapped_column(String(64), index=True)
|
|
model: Mapped[str | None] = mapped_column(String(128), nullable=True)
|
|
engine_id: Mapped[str | None] = mapped_column(String(32), nullable=True, index=True)
|
|
status: Mapped[str] = mapped_column(String(32), index=True)
|
|
latency_ms: Mapped[int | None] = mapped_column(Integer, nullable=True)
|
|
http_status: Mapped[int | None] = mapped_column(Integer, nullable=True)
|
|
provider_task_id: Mapped[str | None] = mapped_column(String(128), nullable=True, index=True)
|
|
request_hash: Mapped[str | None] = mapped_column(String(64), nullable=True)
|
|
response_hash: Mapped[str | None] = mapped_column(String(64), nullable=True)
|
|
request_excerpt: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
response_excerpt: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
prompt_tokens: Mapped[int] = mapped_column(Integer, default=0)
|
|
completion_tokens: Mapped[int] = mapped_column(Integer, default=0)
|
|
total_tokens: Mapped[int] = mapped_column(Integer, default=0)
|
|
error_code: Mapped[str | None] = mapped_column(String(128), nullable=True)
|
|
error_message: Mapped[str | None] = mapped_column(Text, nullable=True)
|
|
created_at = mapped_column(DateTime(timezone=True), server_default=func.now(), index=True)
|