File size: 289 Bytes
08bfbca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import re
import os
import json
import json_repair
import sys
import argparse
# Local Qwen is incapable of handling this, only use claude
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
sys.path.insert(0, project_root)
from chatbot_api import llm_factory
|