mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-31 19:01:28 +00:00
12 lines
303 B
Python
12 lines
303 B
Python
|
|
from lerobot.async_inference.configs import PolicyServerConfig
|
||
|
|
from lerobot.async_inference.policy_server import serve
|
||
|
|
|
||
|
|
host = ... # something like "127.0.0.1" if you're exposing to localhost
|
||
|
|
port = ... # something like 8080
|
||
|
|
|
||
|
|
config = PolicyServerConfig(
|
||
|
|
host=host,
|
||
|
|
port=port,
|
||
|
|
)
|
||
|
|
serve(config)
|