mirror of
https://github.com/lanqian528/chat2api.git
synced 2026-06-13 21:02:46 +08:00
6 lines
211 B
Python
6 lines
211 B
Python
import os
|
|
|
|
chatgpt_base_url = os.environ.get('CHATGPT_BASE_URL', 'https://chat.openai.com/backend-anon')
|
|
history_disabled = os.environ.get('HISTORY_DISABLED', True)
|
|
proxy_url = os.environ.get('PROXY_URL', None)
|