File size: 309 Bytes
64ef551
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from pathlib import Path
from utils import load_prompt


def test_load_prompt_default():
    path = Path("prompts") / "question_answering.txt"

    with open(path) as f:
        lines = f.readlines()
        testing_prompt = "".join(lines)

    prompt = load_prompt(path)

    assert prompt == testing_prompt