Some past commits might have contained Cursor's IP or accidentally commited API keys. Before making the repository public, all the history has been squashed into a single commit with.
21 lines
435 B
Python
21 lines
435 B
Python
"""Settings module for test app."""
|
|
|
|
ENV = "development"
|
|
TESTING = True
|
|
|
|
SERVICE_API_KEY = "test-service-api-key"
|
|
|
|
AZURE_API_VERSION = "2025-04-01-preview"
|
|
AZURE_BASE_URL = "test-base-url"
|
|
AZURE_API_KEY = "test-api-key"
|
|
AZURE_DEPLOYMENT = "gpt-5"
|
|
AZURE_SUMMARY_LEVEL = "detailed"
|
|
AZURE_TRUNCATION = "auto"
|
|
|
|
RECORD_TRAFFIC = False
|
|
|
|
|
|
AZURE_RESPONSES_API_URL = (
|
|
f"{AZURE_BASE_URL}/openai/responses?api-version={AZURE_API_VERSION}"
|
|
)
|