家居大模型联调,分析sop执行分析

This commit is contained in:
ZLI263
2025-11-27 21:36:11 +08:00
parent e533d5128d
commit 9344846772
15 changed files with 520 additions and 29 deletions

View File

@@ -27,7 +27,7 @@ langchain4j:
max-segments-per-batch: 10
# 禁用启动时的连接测试
enabled: true
# redis 向量数据库
# redis 向量数据库
community:
redis:
host: 101.43.230.106
@@ -53,6 +53,9 @@ logging:
spring:
autoconfigure:
exclude:
- dev.langchain4j.community.store.embedding.redis.spring.RedisEmbeddingStoreAutoConfiguration
data:
redis:
port: 6389
@@ -61,11 +64,11 @@ spring:
database: 0
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://124.221.59.58:3309/ai_smart_badge?useUnicode=true&characterEncoding=utf8
url: jdbc:mysql://101.35.52.237:13307/ai_smart_badge?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&autoReconnect=true&failOverReadOnly=false&maxReconnects=3&initialTimeout=2&connectTimeout=30000&socketTimeout=60000
url: jdbc:mysql://124.221.59.58:3309/ai_smart_badge?useUnicode=true&characterEncoding=utf8
# url: jdbc:mysql://101.35.52.237:13307/ai_smart_badge?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&autoReconnect=true&failOverReadOnly=false&maxReconnects=3&initialTimeout=2&connectTimeout=30000&socketTimeout=60000
username: root
password: cstcom.123!
# password: ChangAndb.123!
# password: cstcom.123!
password: ChangAndb.123!
hikari:
# 连接池大小配置
maximumPoolSize: 10
@@ -197,10 +200,10 @@ springdoc:
swagger:
api:
base-url: http://localhost:9060
base-url: http://localhost:8090
# http://localhost:9060/swagger-ui/index.html?urls.primaryName=public-api
server:
port: 9060
port: 8090
# Dify API 配置
dify:

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.rj.mapper.AudioTextAnalysisSopMapper">
<resultMap id="BaseResultMap" type="com.rj.entity.AudioTextAnalysisSop">
<id column="id" property="id"/>
<result column="parent_id" property="parentId"/>
<result column="industry_type" property="industryType"/>
<result column="comprehensive_score" property="comprehensiveScore"/>
<result column="score_summary_reason" property="scoreSummaryReason"/>
<result column="owner_name" property="ownerName"/>
<result column="owner_phone" property="ownerPhone"/>
<result column="customer_name" property="customerName"/>
<result column="customer_phone" property="customerPhone"/>
<result column="greeting_ice_breaking" property="greetingIceBreaking"/>
<result column="brand_introduction" property="brandIntroduction"/>
<result column="golden_three_questions" property="goldenThreeQuestions"/>
<result column="needs_guidance" property="needsGuidance"/>
<result column="service_progression" property="serviceProgression"/>
<result column="reassurance_handbook" property="reassuranceHandbook"/>
<result column="three_level_pricing" property="threeLevelPricing"/>
<result column="objection_handling" property="objectionHandling"/>
<result column="activity_implantation" property="activityImplantation"/>
<result column="closing_cooperation" property="closingCooperation"/>
<result column="proactive_wechat_add" property="proactiveWechatAdd"/>
<result column="polite_farewell" property="politeFarewell"/>
<result column="updated_at" property="updatedAt"/>
<result column="created_at" property="createdAt"/>
</resultMap>
<sql id="Base_Column_List">
id, parent_id, industry_type, comprehensive_score, score_summary_reason,
owner_name, owner_phone, customer_name, customer_phone,
greeting_ice_breaking, brand_introduction, golden_three_questions,
needs_guidance, service_progression, reassurance_handbook,
three_level_pricing, objection_handling, activity_implantation,
closing_cooperation, proactive_wechat_add, polite_farewell,
updated_at, created_at
</sql>
</mapper>