Skip to content

Commit

Permalink
missed a spot
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <adrian.cole@elastic.co>
  • Loading branch information
codefromthecrypt committed Sep 20, 2024
1 parent 0ea3af4 commit 26e48dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/providers/test_ollama.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
import pytest
from exchange import Message
from exchange.providers.ollama import OllamaProvider, OLLAMA_MODEL
Expand All @@ -6,7 +7,7 @@
@pytest.mark.integration
def test_ollama_integration():
provider = OllamaProvider.from_env()
model = OLLAMA_MODEL
model = os.getenv("OLLAMA_MODEL", OLLAMA_MODEL)
system = "You are a helpful assistant."
messages = [Message.user("Hello")]

Expand Down

0 comments on commit 26e48dc

Please sign in to comment.