10 lines
233 B
Python
10 lines
233 B
Python
|
"""Constants for the aidgaf-server package."""
|
||
|
|
||
|
UTF8="utf-8"
|
||
|
""" The encoding to use for strings. """
|
||
|
|
||
|
OPENAI_TIMEOUT=30
|
||
|
""" The timeout for OpenAI requests. """
|
||
|
|
||
|
REPORTING_TIMEOUT=10
|
||
|
""" The timeout for async reporting requests. """
|