We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DEBUG=1 ./manage.py start ...
1 parent 46843f5 commit b58f36fCopy full SHA for b58f36f
api-inference-community/api_inference_community/routes.py
@@ -65,6 +65,8 @@ def emit(self, record):
65
66
status_code = 200
67
n_characters = 0
68
+ if os.getenv("DEBUG", "0") in {"1", "true"}:
69
+ outputs = pipe(inputs)
70
try:
71
outputs = pipe(inputs)
72
n_characters = get_input_characters(inputs)
0 commit comments