mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-03 00:02:28 +08:00
12 lines
229 B
Python
12 lines
229 B
Python
"""AI Proxy
|
|
|
|
A proxy server that enables AI models to work with multiple API providers.
|
|
"""
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
# Load environment variables from .env file
|
|
load_dotenv()
|
|
__version__ = "9.1.0"
|
|
__author__ = "AI Proxy"
|