gguf-parser-web / app /devices.py
phate334's picture
[add] device model
863856d
raw
history blame contribute delete
190 Bytes
from pydantic import BaseModel, Field
class Device(BaseModel):
memory_size: int = Field(alias="memorySize")
memory_bandwidth: float = Field(alias="memoryBandwidth")
FLOPS: str