# CSV文件配置 csv: # A_TREE CSV文件路径 a_csv_path: "data/a_20250709_221723.csv" # B_TREE CSV文件路径 b_csv_path: "data/b_20250709_221723.csv" # 输出CSV文件路径 output_csv_path: "test_output/ab.csv" # 匹配配置 matching: # 相似度阈值 similarity_threshold: 0.7 # 最大匹配数 max_matches: 3 # 是否启用简称匹配 enable_abbreviation: true # 日志配置 logging: level: "DEBUG" format: "{time:YYYY-MM-DD HH:mm:ss} | {level} | {message}" file: "logs/test_matching.log" rotation: "10 MB" retention: "30 days" # 输出配置 output: # 匹配结果文件 result_file: "test_output/matching_results.csv" # 日志文件目录 log_dir: "logs" # 临时文件目录 temp_dir: "temp"