chatbot1 / tests /test_chat_engine.py
Jack-ki1's picture
Upload 16 files
00bd2b1 verified
raw
history blame contribute delete
401 Bytes
# tests/test_chat_engine.py
import unittest
from src.chat_engine import build_expert_prompt
from src.config import TOPIC_REGISTRY
class TestChatEngine(unittest.TestCase):
def test_build_expert_prompt(self):
topic_spec = TOPIC_REGISTRY["Python"]
prompt = build_expert_prompt(topic_spec, "What is a decorator?")
self.assertIn("Dr. Data", prompt.messages[0].content)