refactor: massive rename dap -> dat and fix scaffold syntax error
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 14s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 14s
This commit is contained in:
70
dat-gateway/src/main/resources/application.yml
Normal file
70
dat-gateway/src/main/resources/application.yml
Normal file
@@ -0,0 +1,70 @@
|
||||
spring:
|
||||
application:
|
||||
name: dap-admin
|
||||
profiles:
|
||||
active: local
|
||||
sql:
|
||||
init:
|
||||
mode: always
|
||||
lifecycle:
|
||||
timeout-per-shutdown-phase: 20s
|
||||
ai:
|
||||
openai:
|
||||
api-key: ${OPENROUTER_API_KEY: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}
|
||||
base-url: https://openrouter.ai/api/v1
|
||||
chat:
|
||||
completions-path: /chat/completions
|
||||
options:
|
||||
model: cohere/north-mini-code:free
|
||||
temperature: 0.3
|
||||
|
||||
server:
|
||||
port: 8081
|
||||
http2:
|
||||
enabled: true
|
||||
shutdown: graceful
|
||||
|
||||
report:
|
||||
service-url: ${REPORT_SERVICE_URL:http://tool-report:8092}
|
||||
|
||||
mcp:
|
||||
tool-server-api-key: tool-server-key
|
||||
gateway:
|
||||
fallback:
|
||||
default-url: http://was-cus:8084
|
||||
routes:
|
||||
cmm: http://was-sal:8082
|
||||
cus: http://was-cus:8084
|
||||
sal: http://was-sal:8082
|
||||
# Existing SMS category callers continue to resolve to the SAL Pod.
|
||||
sms: http://was-sal:8082
|
||||
oth: http://was-cus:8084
|
||||
hr: http://was-cus:8084
|
||||
pro: http://was-pro:8085
|
||||
sys: http://was-sys:8086
|
||||
agent-claims-required: false
|
||||
trusted-claims-required: false
|
||||
write-approval-required: false
|
||||
default-page-size: 100
|
||||
max-page-size: 500
|
||||
max-pages-per-call: 3
|
||||
max-stream-bytes: 1048576
|
||||
max-response-bytes-from-tool: 5242880
|
||||
tool-registry-sync-interval-millis: 5000
|
||||
security:
|
||||
tenant-domains:
|
||||
TESTER-DEV: ALL
|
||||
system: ALL
|
||||
AUTO-TESTER: ALL
|
||||
auto-tester: ALL
|
||||
|
||||
mybatis:
|
||||
mapper-locations: classpath:mapper/**/*.xml
|
||||
type-aliases-package: ""
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
|
||||
logging:
|
||||
level:
|
||||
com.corundumstudio.socketio: DEBUG
|
||||
org.apache.kafka: ERROR
|
||||
Reference in New Issue
Block a user