File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
runpod/serverless/modules Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ RUNPOD_WEBHOOK_PING= # URL to ping
1717RUNPOD_PING_INTERVAL= # Interval in milliseconds to ping the API (Default: 10000)
1818
1919RUNPOD_ENDPOINT_ID= # Endpoint ID
20+ RUNPOD_ENDPOINT_SECRET= # Endpoint Secret (SET BY RUNPOD Replaces RUNPOD_AI_API_KEY, not implemented yet)
2021
2122# Realtime
2223RUNPOD_REALTIME_PORT= # Port to listen on for realtime connections (Default: None)
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def __init__(self):
3434
3535 self .config = {"handler" : None }
3636 self .rp_app = FastAPI ()
37- self .rp_app .add_api_route (f"{ os .environ .get ('RUNPOD_ENDPOINT_ID' )} /realtime" ,
37+ self .rp_app .add_api_route (f"/ { os .environ .get ('RUNPOD_ENDPOINT_ID' )} /realtime" ,
3838 self .run , methods = ["POST" ])
3939
4040 def start_uvicorn (self , api_port ):
Original file line number Diff line number Diff line change 11[metadata]
22name = runpod
3- version = 0.8.2
3+ version = 0.8.3
44description = Official Python library for RunPod API & SDK.
55long_description = file: README.md
66long_description_content_type = text/markdown
You can’t perform that action at this time.
0 commit comments