We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c4d16e commit c6bc4a3Copy full SHA for c6bc4a3
tests/unit/test_decompose.py
@@ -10,7 +10,8 @@ class TestDecompose:
10
def decomposer(self, mock_llm_client):
11
# We also need to mock the prompt handler since it loads files
12
mock_prompt = MagicMock(spec=BasePrompt)
13
- mock_prompt.decompose_prompt = "Mock Prompt Template {doc}"
+ mock_prompt.sag_prompt = "Mock SAG Prompt {doc}"
14
+ mock_prompt.restore_prompt = "Mock Restore {doc} {claims}"
15
16
return Decompose(llm_client=mock_llm_client, prompt=mock_prompt)
17
0 commit comments