Skip to content

Commit

Permalink
fix missing rename
Browse files Browse the repository at this point in the history
  • Loading branch information
SecretiveShell committed Sep 12, 2024
1 parent 8b48f00 commit e11d80b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions endpoints/core/types/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from time import time
from typing import List, Literal, Optional, Union

from common.config_models import logging_config_model
from common.config_models import LoggingConfig
from common.tabby_config import config
from common.utils import unwrap

Expand Down Expand Up @@ -34,7 +34,7 @@ class ModelCard(BaseModel):
object: str = "model"
created: int = Field(default_factory=lambda: int(time()))
owned_by: str = "tabbyAPI"
logging: Optional[logging_config_model] = None
logging: Optional[LoggingConfig] = None
parameters: Optional[ModelCardParameters] = None


Expand Down

0 comments on commit e11d80b

Please sign in to comment.