diff --git a/core/src/main/resources/application-docker.properties b/core/src/main/resources/application-docker.properties index 2f9284b71..ca93affd1 100644 --- a/core/src/main/resources/application-docker.properties +++ b/core/src/main/resources/application-docker.properties @@ -61,4 +61,8 @@ azure.container.name=${AZURE_CONTAINER_NAME} pg.dump.path=pg_dump # Cron -cron.sendContentToSubscribers=${CRON_SEND_CONTENT_TO_SUBSCRIBERS:0 0 20 * * SAT} \ No newline at end of file +cron.sendContentToSubscribers=${CRON_SEND_CONTENT_TO_SUBSCRIBERS:0 0 20 * * SAT} + +# OpenAI +openai.api.key=${OPEN_AI_API_KEY:sk-proj-nCJktK9QTYEogyNa6mGghwftDa4E6kA} +openai.api.url=https://api.openai.com/v1/chat/completions \ No newline at end of file diff --git a/core/src/main/resources/application-test.properties b/core/src/main/resources/application-test.properties index fcb61039f..ef2a6f6e2 100644 --- a/core/src/main/resources/application-test.properties +++ b/core/src/main/resources/application-test.properties @@ -29,4 +29,8 @@ azure.container.name=test pg.dump.path=pg_dump # Cron -cron.sendContentToSubscribers=${CRON_SEND_CONTENT_TO_SUBSCRIBERS:0 0 20 * * SAT} \ No newline at end of file +cron.sendContentToSubscribers=${CRON_SEND_CONTENT_TO_SUBSCRIBERS:0 0 20 * * SAT} + +# OpenAI +openai.api.key=${OPEN_AI_API_KEY:sk-proj-nCJktK9QTYEogyNa6mGghwftDa4E6kA} +openai.api.url=https://api.openai.com/v1/chat/completions \ No newline at end of file