mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 11:26:25 +00:00
- SSE 스트리밍 방식으로 AI 분석 결과 실시간 전송 구현 - 용어 감지 및 관련 회의록 검색 기능 개선 - API 명세 업데이트 (SSE 엔드포인트 추가) - AI 및 STT 서비스 테스트 환경 구성 문서 작성 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
643 B
Groovy
22 lines
643 B
Groovy
bootJar {
|
|
archiveFileName = 'ai.jar'
|
|
}
|
|
|
|
dependencies {
|
|
// OpenAI
|
|
implementation "com.theokanning.openai-gpt3-java:service:${openaiVersion}"
|
|
|
|
// Azure AI Search
|
|
implementation "com.azure:azure-search-documents:${azureAiSearchVersion}"
|
|
|
|
// Feign (for external API calls)
|
|
implementation "io.github.openfeign:feign-jackson:${feignJacksonVersion}"
|
|
implementation "io.github.openfeign:feign-okhttp:${feignJacksonVersion}"
|
|
|
|
// Spring WebFlux for SSE streaming
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
|
|
|
// H2 Database for local development
|
|
runtimeOnly 'com.h2database:h2'
|
|
}
|