mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Fix openai extension script.py - TypeError: '_Environ' object is not callable (#1753)
This commit is contained in:
parent
f54256e348
commit
4883e20fa7
@ -8,7 +8,7 @@ from modules import shared
|
|||||||
from modules.text_generation import encode, generate_reply
|
from modules.text_generation import encode, generate_reply
|
||||||
|
|
||||||
params = {
|
params = {
|
||||||
'port': int(os.environ('OPENEDAI_PORT')) if 'OPENEDAI_PORT' in os.environ else 5001,
|
'port': int(os.environ.get('OPENEDAI_PORT')) if 'OPENEDAI_PORT' in os.environ else 5001,
|
||||||
}
|
}
|
||||||
|
|
||||||
debug = True if 'OPENEDAI_DEBUG' in os.environ else False
|
debug = True if 'OPENEDAI_DEBUG' in os.environ else False
|
||||||
|
Loading…
Reference in New Issue
Block a user