Unverified Commit 7ba34b12 authored by Jiayi Yan's avatar Jiayi Yan Committed by GitHub
Browse files

[bugfix] fix syntax warning caused by backslash (#21251)

parent 9499e26e
...@@ -54,7 +54,7 @@ def main(): ...@@ -54,7 +54,7 @@ def main():
for output in outputs: for output in outputs:
prompt = output.prompt prompt = output.prompt
generated_text = output.outputs[0].text generated_text = output.outputs[0].text
print(f"Prompt: {prompt!r}, \n\n\n\ Generated text: {generated_text!r}") print(f"Prompt: {prompt!r}, \n\n\n Generated text: {generated_text!r}")
if __name__ == "__main__": if __name__ == "__main__":
......
...@@ -341,7 +341,7 @@ def test_abort_timeout_on_prefiller(monkeypatch, distributed_executor_backend): ...@@ -341,7 +341,7 @@ def test_abort_timeout_on_prefiller(monkeypatch, distributed_executor_backend):
Test lifecycle of an aborted Remote Prefill request hitting the timeout. Test lifecycle of an aborted Remote Prefill request hitting the timeout.
-----> P -----> P
| {process request} | {process request}
<-\--- | {result is NOT delivered, eg proxy is down} <-/--- | {result is NOT delivered, eg proxy is down}
| |
| |
| {eventually free blocks} | {eventually free blocks}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment