mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-05-31 02:01:16 +02:00
Introducing permissioning, standardize onboarding for connectors, re-make the data model for connectors / credentials / index-attempts, making all environment variables optional, a bunch of small fixes + improvements. Co-authored-by: Weves <chrisweaver101@gmail.com>
14 lines
491 B
Plaintext
14 lines
491 B
Plaintext
# Very basic .env file with options that are easy to change. Allows you to deploy everything on a single machine.
|
|
# We don't suggest using these settings for production.
|
|
|
|
|
|
# Choose between "openai-chat-completion" and "openai-completion"
|
|
INTERNAL_MODEL_VERSION=openai-chat-completion
|
|
|
|
# Use a valid model for the choice above, consult https://platform.openai.com/docs/models/model-endpoint-compatibility
|
|
OPENAPI_MODEL_VERSION=gpt-3.5-turbo
|
|
|
|
|
|
# Auth not necessary for local
|
|
DISABLE_AUTH=True
|