Last active 1731289378

Jina-2.py Raw
1from jina import Deployment
2from executor import StableLM
3
4dep = Deployment(uses=StableLM, timeout_ready=-1, port=12345)
5
6with dep:
7 dep.block()