Update cassettes again 2

This commit is contained in:
Brandon Hancock
2025-02-18 16:45:46 -05:00
parent f895af1d32
commit 00595e8851
3 changed files with 10 additions and 10 deletions

View File

@@ -349,7 +349,7 @@ def test_convert_with_instructions():
assert output.age == 30
@pytest.mark.vcr(filter_headers=["authorization"], record_mode="new_episodes")
@pytest.mark.vcr(filter_headers=["authorization"])
def test_converter_with_llama3_2_model():
llm = LLM(model="ollama/llama3.2:3b", base_url="http://localhost:11434")
@@ -370,7 +370,7 @@ def test_converter_with_llama3_2_model():
assert output.age == 30
@pytest.mark.vcr(filter_headers=["authorization"], record_mode="new_episodes")
@pytest.mark.vcr(filter_headers=["authorization"])
def test_converter_with_llama3_1_model():
llm = LLM(model="ollama/llama3.1", base_url="http://localhost:11434")
sample_text = "Name: Alice Llama, Age: 30"