Merge "add 15.0.0-container.yaml"
[usecase-ui/llm-adaptation.git] / llm-adaptation / src / main / resources / application.yaml
1 server:
2   port: 8084
3 fastGpt:
4   server: http://172.22.16.126:3000
5   model: qwen2:7b
6   maaSType: fastGpt
7 biSheng:
8   server: http://172.22.16.127:3001
9   model: 3
10   maaSType: biSheng
11 spring:
12   main:
13     allow-circular-references: true
14   datasource:
15     url: jdbc:postgresql://${POSTGRES_IP:127.0.0.1}:${POSTGRES_PORT:5432}/${POSTGRES_DB_NAME:uui}
16     username: ${POSTGRES_USERNAME:uui}
17     password: ${POSTGRES_PASSWORD:uui}
18     driver-class-name: org.postgresql.Driver
19   sql:
20     init:
21       schema-locations: classpath*:llm-adaptation-init.sql
22       mode: always
23 mybatis:
24   configuration:
25     database-id: PostgreSQL
26   mapper-locations: classpath*:mapper/*.xml
27
28 logging:
29   level:
30     org.springframework.web: DEBUG