-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
31 lines (28 loc) · 758 Bytes
/
Copy pathpixi.toml
File metadata and controls
31 lines (28 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
name = "mojoserve"
version = "0.1.0"
description = "High-performance AI inference engine powered by Mojo."
channels = ["https://conda.modular.com/max-nightly/", "conda-forge"]
platforms = ["linux-64"]
[dependencies]
python = ">=3.10,<3.13"
mojo = "*"
pip = ">=24"
[pypi-dependencies]
mojoserve = { path = ".", editable = true }
fastapi = ">=0.115"
uvicorn = { version = ">=0.30", extras = ["standard"] }
pydantic = ">=2.8"
pydantic-settings = ">=2.4"
typer = ">=0.12"
rich = ">=13.7"
httpx = ">=0.27"
orjson = ">=3.10"
numpy = ">=1.26"
onnxruntime = ">=1.18"
[tasks]
serve = "mojoserve serve examples/models/model.onnx"
benchmark = "mojoserve benchmark examples/models/model.onnx"
test = "pytest"
lint = "ruff check ."
format = "ruff format ."