16 lines
472 B
Python
16 lines
472 B
Python
import litellm
|
|
|
|
from strix.llm.config import LLMConfig
|
|
from strix.llm.llm import LLM
|
|
|
|
|
|
def test_llm_does_not_modify_litellm_callbacks(monkeypatch) -> None:
|
|
monkeypatch.setenv("STRIX_TELEMETRY", "1")
|
|
monkeypatch.setenv("STRIX_OTEL_TELEMETRY", "1")
|
|
monkeypatch.setattr(litellm, "callbacks", ["custom-callback"])
|
|
|
|
llm = LLM(LLMConfig(model_name="openai/gpt-5"), agent_name=None)
|
|
|
|
assert llm is not None
|
|
assert litellm.callbacks == ["custom-callback"]
|