Skip to content

Commit fde6a7e

Browse files
committed
adjust azure setup from testserver to logos setup
1 parent 0a72d68 commit fde6a7e

1 file changed

Lines changed: 16 additions & 13 deletions

File tree

src/main/resources/config/application-test.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,24 @@ spring:
4444
enable: true
4545
ai:
4646
model:
47-
chat: azure-openai
48-
openai:
49-
enabled: false
50-
api-key: 'disabled'
51-
base-url: 'http://disabled'
47+
chat: openai
5248
azure:
5349
openai:
54-
enabled: true
55-
api-key: ${SPRING_AI_AZURE_API_KEY}
56-
endpoint: ${SPRING_AI_AZURE_ENDPOINT}
57-
chat:
58-
options:
59-
deployment-name: gpt-5-mini
60-
reasoning-effort: low
61-
max-completion-tokens: 2000
50+
enabled: false
51+
api-key: 'disabled'
52+
endpoint: 'http://disabled'
53+
# Logos (https://logos.aet.cit.tum.de) is an OpenAI-compatible gateway and is only
54+
# reachable from inside the TUM network.
55+
openai:
56+
enabled: true
57+
api-key: ${SPRING_AI_OPENAI_API_KEY}
58+
base-url: ${SPRING_AI_OPENAI_BASE_URL}
59+
chat:
60+
completions-path: /v1/chat/completions
61+
options:
62+
model: gpt-5-mini
63+
reasoning-effort: low
64+
max-completion-tokens: 2000
6265
# Replace by 'prod, faker' to add the faker context and have sample data loaded in production
6366
liquibase:
6467
contexts: prod

0 commit comments

Comments
 (0)