Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mistralrs-pyo3/mistralrs.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -377,12 +377,12 @@ class Runner:
Send a request to make the specified adapters the active adapters for the model.
"""

def tokenize_text(self, text: str, add_speial_tokens: bool) -> list[int]:
def tokenize_text(self, text: str, add_special_tokens: bool) -> list[int]:
"""
Tokenize some text, returning raw tokens.
"""

def detokenize_text(self, tokens: list[int], skip_speial_tokens: bool) -> str:
def detokenize_text(self, tokens: list[int], skip_special_tokens: bool) -> str:
"""
Detokenize some tokens, returning text.
"""
Expand Down
Loading