[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-01-04 14:13:24 +00:00 committed by GitHub
parent 648a990cd1
commit 1a65e66498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -1865,7 +1865,9 @@ class MessageAgentThought(TypeBase):
answer: Mapped[str | None] = mapped_column(LongText, nullable=True)
answer_token: Mapped[int | None] = mapped_column(sa.Integer, nullable=True)
answer_unit_price: Mapped[Decimal | None] = mapped_column(sa.Numeric, nullable=True)
answer_price_unit: Mapped[Decimal] = mapped_column(sa.Numeric(10, 7), nullable=False, server_default=sa.text("0.001"))
answer_price_unit: Mapped[Decimal] = mapped_column(
sa.Numeric(10, 7), nullable=False, server_default=sa.text("0.001")
)
tokens: Mapped[int | None] = mapped_column(sa.Integer, nullable=True)
total_price: Mapped[Decimal | None] = mapped_column(sa.Numeric, nullable=True)
currency: Mapped[str | None] = mapped_column(String(255), nullable=True)