You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
424 B
11 lines
424 B
<?php
|
|
|
|
define('OLLAMA_URL', 'http://127.0.0.1:11434');
|
|
define('CONFIG_PATH', '/var/lib/KaI');
|
|
define('CONFIG_FILE', CONFIG_PATH . '/config.json');
|
|
define('CHAT_HISTORY_FILE', CONFIG_PATH . '/chat.history.data');
|
|
define('MAIL_FROM', getenv('MAIL_FROM') ?: 'noreply@kai.local');
|
|
define('MAIL_FROM_NAME', getenv('MAIL_FROM_NAME') ?: 'KaI');
|
|
define('APP_BASE_URL', getenv('APP_BASE_URL') ?: 'http://127.0.0.1/KaI-OllamaChat');
|
|
|