/ open-webui.git
/ app
/ env
/ lib
/ python3.11
/ site-packages
/ httpcore
/ _ssl.py
Run
Starting...
Stop
View File
Save
import ssl import certifi def default_ssl_context() -> ssl.SSLContext: context = ssl.create_default_context() context.load_verify_locations(certifi.where()) return context
Memory