Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
shouldn't keep test logs

forgot how to use enums
  • Loading branch information
kuraisle committed Oct 18, 2024
1 parent 9f76c55 commit 127dba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ RAG/tmp.py
Carrot-Assistant/omop_tmp.py
RAG/.cache/
*.qdrant
/Carrot-Assistant/tests/log
2 changes: 1 addition & 1 deletion Carrot-Assistant/tests/test_evals.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def llm_prompt(self):

@pytest.fixture
def llm_pipeline(self, llm_prompt):
return LLMPipeline(LLMModel["llama-3.1-8b"], llm_prompt)
return LLMPipeline(LLMModel.LLAMA_3_1_8B, llm_prompt)

def test_returns_string(self, llm_pipeline):
model_output = llm_pipeline.run({"input_sentence": "Polly wants a cracker"})
Expand Down

0 comments on commit 127dba3

Please sign in to comment.