Skip to content
Snippets Groups Projects
Unverified Commit 4909b470 authored by James Briggs's avatar James Briggs
Browse files

remove pipe types

parent e64c7371
No related branches found
No related tags found
No related merge requests found
from contextlib import contextmanager
from pathlib import Path
from typing import Any
from typing import Any, Optional
from llama_cpp import Llama, LlamaGrammar
......@@ -10,10 +10,10 @@ from semantic_router.utils.logger import logger
class LlamaCppLLM(BaseLLM):
llm: Llama | None
temperature: float | None
max_tokens: int | None
grammar: LlamaGrammar | None
llm: Optional[Llama] = None
temperature: Optional[float] = None
max_tokens: Optional[int] = None
grammar: Optional[LlamaGrammar] = None
def __init__(
self,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment