Skip to content

Commit

Permalink
remove default
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed May 22, 2024
1 parent f751d11 commit cc8b005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agixt/ApiClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
)
USING_JWT = True if getenv("USING_JWT").lower() == "true" else False
DB_CONNECTED = True if getenv("DB_CONNECTED").lower() == "true" else False
WORKERS = int(getenv("UVICORN_WORKERS", 10))
WORKERS = int(getenv("UVICORN_WORKERS"))
AGIXT_URI = getenv("AGIXT_URI")
AGIXT_API_KEY = getenv("AGIXT_API_KEY")
ApiClient = AGiXTSDK(base_uri="http://localhost:7437", api_key=AGIXT_API_KEY)
Expand Down

0 comments on commit cc8b005

Please sign in to comment.