12 lines
383 B
Python
12 lines
383 B
Python
"""OPC - One-Person Company: Autonomous AI Agent collaboration system."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from opc.core.windows_ssl import sanitize_windows_sslkeylogfile
|
|
|
|
# Remove SSLKEYLOGFILE as early as possible on Windows so importing network
|
|
# clients (aiohttp, litellm/httpx, etc.) does not trigger OpenSSL crashes.
|
|
sanitize_windows_sslkeylogfile()
|
|
|
|
__version__ = "0.1.0"
|