Skip to content

Commit

Permalink
revision not optional, brainforge standard
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonBohdan committed Dec 28, 2024
1 parent de433e4 commit 016750c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neon_llm_vllm/vllm.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from transformers import AutoTokenizer, PreTrainedTokenizerBase
import numpy as np

from typing import List, Dict, Tuple, Optional
from typing import List, Dict
from neon_llm_core.llm import NeonLLM
from ovos_utils.log import LOG

Expand Down Expand Up @@ -71,7 +71,7 @@ def from_yaml(cls, yaml_file="datasets/config.yaml"):
class ModelMetadata:
vllm_model_name: str
model_name: str
revision: Optional[str] = None
revision: str

personas: Dict[str, str]

Expand Down

0 comments on commit 016750c

Please sign in to comment.