9 lines
139 B
Python
9 lines
139 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class OllamaModelMetadata(BaseModel):
|
|
label: str
|
|
value: str
|
|
size: str
|
|
tested: bool = True
|