File size: 360 Bytes
dabc803 9924f77 529d9b9 dabc803 |
1 2 3 4 5 6 7 8 9 10 |
from chat_engine import LLMChatEngine
# LLMChatEngine(sqlite_path: str = "va_code.db", model_name: str = "Qwen/Qwen3-14B", enable_thinking: bool = True)
chat_engine = LLMChatEngine()
response = chat_engine.chat("If my landlord needs to do repairs that require me to temporarily move out, can they force me to relocate without my consent?")
print(response)
|