Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (22 loc) · 1.08 KB

File metadata and controls

35 lines (22 loc) · 1.08 KB

kilroy-module-pytorch-py-sdk

SDK for kilroy modules using PyTorch 🧰

Lint Tests Docs


Installing

Using pip:

pip install kilroy-module-pytorch-py-sdk

Usage

from kilroy_module_pytorch_py_sdk import BasicModule, ModuleServer

class MyModule(BasicModule):
    ... # Implement all necessary methods here

module = await MyModule.build()
server = ModuleServer(module)

await server.run(host="0.0.0.0", port=11000)