Fix : analytis 수정

This commit is contained in:
lsh9672
2025-06-12 14:30:23 +09:00
parent cb1ab34a39
commit a288fc9e0c
58 changed files with 2963 additions and 447 deletions
+23 -3
View File
@@ -1,6 +1,26 @@
dependencies {
implementation project(':common')
// AI APIs
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// Spring Boot
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-cache'
// Azure Event Hub
implementation 'com.azure:azure-messaging-eventhubs:5.15.0'
implementation 'com.azure:azure-messaging-eventhubs-checkpointstore-blob:1.16.0'
implementation 'com.azure:azure-storage-blob:12.22.1'
// AI Services
implementation 'com.azure:azure-ai-textanalytics:5.3.0'
implementation 'com.theokanning.openai-gpt3-java:service:0.18.2'
// Monitoring
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-azure-monitor'
// Database
implementation 'org.postgresql:postgresql'
}