Skip to content

Commit b0b52f0

Browse files
authored
fix(jmanus): optimize the configuration and use of memory function (#2103)
优化记忆功能的配置
1 parent d97e1c5 commit b0b52f0

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

spring-ai-alibaba-jmanus/src/main/resources/application-h2.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ spring:
1616
hibernate:
1717
ddl-auto: update
1818
show-sql: false
19+
ai:
20+
memory:
21+
h2:
22+
enabled: true

spring-ai-alibaba-jmanus/src/main/resources/application-mysql.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ spring:
66
password: your_mysql_password
77
jpa:
88
database-platform: org.hibernate.dialect.MySQLDialect
9+
ai:
10+
memory:
11+
mysql:
12+
enabled: true

spring-ai-alibaba-jmanus/src/main/resources/application-postgres.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ spring:
66
password: 123456
77
jpa:
88
database-platform: org.hibernate.dialect.PostgreSQLDialect
9+
ai:
10+
memory:
11+
postgres:
12+
enabled: true

spring-ai-alibaba-jmanus/src/main/resources/application.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ spring:
3232
properties:
3333
hibernate:
3434
format_sql: true
35-
ai:
36-
memory:
37-
h2:
38-
enabled: true
3935

4036
logging:
4137
file:

0 commit comments

Comments
 (0)