/
vorotov.a.vikt
/
MathEquGen
Обзор
Документация
Войти
/
vorotov.a.vikt
/
MathEquGen
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/main/java/com/example/chat/logic/config/ServiceConfig.java
19 строк
545 B
VorotovAlexey
разные доработки
10 дек 2025, 09:58
10 дек 2025, 09:58
f42a8b8
Код
Авторство
О чём код?
package com.example.chat.logic.config; import com.example.chat.logic.component.SimpleChatMemoryProvider; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class ServiceConfig { @Value("${math-equ-gen.memory.max-messages:2}") private Integer maxMessages; @Bean SimpleChatMemoryProvider simpleChatMemoryProvider() { return new SimpleChatMemoryProvider(maxMessages); } }