chore: remove trailing whitespace from README.md line 42

This commit is contained in:
retoor 2025-04-03 00:09:51 +00:00
parent d0d2b14be4
commit 50a5a27b55

View File

@ -133,6 +133,8 @@ app = web.Application()
app.router.add_get("/", index_handler)
app.router.add_route('GET', '/publish', websocket_handler)
app.router.add_route('POST', '/api/chat', http_handler)
app.router.add_route('POST', '/v1/api/chat', http_handler)
app.router.add_route('POST', '/v1/api/chat/completions', http_handler)
app.router.add_route('GET', '/models', models_handler)
if __name__ == '__main__':