Files
ray/python/ray/serve/examples/doc/quickstart_function.py
T
2020-04-15 12:25:37 -07:00

14 lines
235 B
Python

from ray import serve
import requests
serve.init()
@serve.route("/hello")
def echo(flask_request):
return "hello " + flask_request.args.get("name", "serve!")
requests.get("http://127.0.0.1:8000/hello").text
# > "hello serve!"