mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 16:06:23 +00:00
19 lines
528 B
Groovy
19 lines
528 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}"
|
|
|
|
// H2 Database for local development
|
|
runtimeOnly 'com.h2database:h2'
|
|
}
|