refactor: store file in position, rename filename to file_name

Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
This commit is contained in:
Konstantin Fickel 2026-01-31 17:21:55 +01:00
parent d5b1541436
commit 79095bad4a
Signed by: kfickel
GPG key ID: A793722F9933C1A5
8 changed files with 27 additions and 24 deletions

View file

@ -1,4 +1,5 @@
from __future__ import annotations
from pydantic import BaseModel
@ -11,7 +12,7 @@ class Shard(BaseModel):
class StreamFile(BaseModel):
filename: str
file_name: str
shard: Shard | None = None