Merge branch 'test'

This commit is contained in:
fuzhongyun 2025-12-27 11:16:41 +08:00
commit 1e076380b5
4 changed files with 62 additions and 8 deletions

View File

@ -4,14 +4,24 @@ server:
host: "0.0.0.0" host: "0.0.0.0"
ollama: ollama:
base_url: "http://127.0.0.1:11434" base_url: "http://172.17.0.1:11434"
model: "qwen3-coder:480b-cloud" model: "qwen3-coder:480b-cloud"
generate_model: "qwen3-coder:480b-cloud" generate_model: "qwen3-coder:480b-cloud"
mapping_model: "deepseek-v3.2:cloud"
vl_model: "qwen2.5vl:3b" vl_model: "qwen2.5vl:3b"
timeout: "120s" timeout: "120s"
level: "info" level: "info"
format: "json" format: "json"
vllm:
base_url: "http://172.17.0.1:8001/v1"
vl_model: "qwen2.5-vl-3b-awq"
timeout: "120s"
level: "info"
coze:
base_url: "https://api.coze.cn"
api_secret: "sat_AqvFcdNgesP8megy1ItTscWFXRcsHRzmM4NJ1KNavfcdT0EPwYuCPkDqGhItpx13"
sys: sys:
@ -19,6 +29,7 @@ sys:
channel_pool_len: 100 channel_pool_len: 100
channel_pool_size: 32 channel_pool_size: 32
llm_pool_len: 5 llm_pool_len: 5
heartbeat_interval: 30
redis: redis:
host: 47.97.27.195:6379 host: 47.97.27.195:6379
type: node type: node
@ -64,6 +75,49 @@ tools:
zltxOrderAfterSaleResellerBatch: zltxOrderAfterSaleResellerBatch:
enabled: true enabled: true
base_url: "https://revcl.1688sup.com/api/admin/afterSales/reseller_pre_ai" base_url: "https://revcl.1688sup.com/api/admin/afterSales/reseller_pre_ai"
weather:
enabled: true
base_url: "https://restapi.amap.com/v3/weather/weatherInfo"
api_key: "12afbde5ab78cb7e575ff76bd0bdef2b"
cozeExpress:
enabled: true
base_url: "https://api.coze.cn"
api_key: "7582477438102552616"
api_secret: "pat_eEN0BdLNDughEtABjJJRYTW71olvDU0qUbfQUeaPc2NnYWO8HeyNoui5aR9z0sSZ"
cozeCompany:
enabled: true
base_url: "https://api.coze.cn"
api_key: "7583905168607100978"
api_secret: "pat_eEN0BdLNDughEtABjJJRYTW71olvDU0qUbfQUeaPc2NnYWO8HeyNoui5aR9z0sSZ"
# eino tool 配置
eino_tools:
# 货易通商品上传
hytProductUpload:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/goods/supplier/batch/add/complete"
add_url: "https://hyt.86698.cn/#/goods/goodsManage"
# 货易通供应商查询
hytSupplierSearch:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/supplier/list"
# 货易通仓库查询
hytWarehouseSearch:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/warehouse/list"
# 货易通商品添加
hytGoodsAdd:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/goods/add"
add_url: "https://hyt.86698.cn/#/goods/goodsManage"
# 货易通商品图片添加
hytGoodsMediaAdd:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/media/add/batch"
# 货易通商品分类添加
hytGoodsCategoryAdd:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/good/category/relation/add"
# 货易通商品分类查询
hytGoodsCategorySearch:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/goods/category/list"
# 货易通商品品牌查询
hytGoodsBrandSearch:
base_url: "https://hyt.86698.cn/admin_upload/api/v1/goods/brand/list"
dingtalk: dingtalk:
api_key: "dingsbbntrkeiyazcfdg" api_key: "dingsbbntrkeiyazcfdg"

View File

@ -15,13 +15,13 @@ ollama:
vllm: vllm:
base_url: "http://117.175.169.61:16001/v1" base_url: "http://117.175.169.61:16001/v1"
vl_model: "Qwen2.5-VL-3B-Instruct-AWQ" vl_model: "qwen2.5-vl-3b-awq"
timeout: "120s" timeout: "120s"
level: "info" level: "info"
coze: coze:
base_url: "https://api.coze.cn" base_url: "https://api.coze.cn"
api_secret: "pat_guUSPk8KZFvIIbVReuaMlOBVAaIISSdkTEV8MaRgVPNv6UEYPHKTBUXznFcxl04H" api_secret: "sat_AqvFcdNgesP8megy1ItTscWFXRcsHRzmM4NJ1KNavfcdT0EPwYuCPkDqGhItpx13"
sys: sys:

View File

@ -15,7 +15,7 @@ ollama:
vllm: vllm:
base_url: "http://host.docker.internal:8001/v1" base_url: "http://host.docker.internal:8001/v1"
vl_model: "Qwen2.5-VL-3B-Instruct-AWQ" vl_model: "qwen2.5-vl-3b-awq"
timeout: "120s" timeout: "120s"
level: "info" level: "info"

View File

@ -120,10 +120,10 @@ func (r *Handle) HandleMatch(ctx context.Context, client *gateway.Client, rec *e
} }
// 校验用户权限 // 校验用户权限
// if err = r.PermissionAuth(client, pointTask); err != nil { if err = r.PermissionAuth(client, pointTask); err != nil {
// log.Errorf("权限验证失败: %s", err.Error()) log.Errorf("权限验证失败: %s", err.Error())
// return return
// } }
switch constants.TaskType(pointTask.Type) { switch constants.TaskType(pointTask.Type) {
case constants.TaskTypeApi: case constants.TaskTypeApi: