-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
36 lines (31 loc) · 1 KB
/
pyproject.toml
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
32
33
34
35
36
[project]
authors = [{ name = "Modular Inc", email = "[email protected]" }]
name = "code-execution-sandbox-agent-with-e2b"
requires-python = ">=3.10,<3.13"
version = "0.0.0"
dependencies = [
"openai>=1.65.1,<2",
"e2b-code-interpreter>=1.0.5,<2",
"python-dotenv>=1.0.1,<2",
"rich>=13.9.4,<14",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.pixi.project]
channels = [
"https://conda.modular.com/max-nightly",
"https://conda.modular.com/max",
"https://repo.prefix.dev/modular-community",
"conda-forge",
]
platforms = ["linux-64", "linux-aarch64", "osx-arm64"]
[tool.pixi.pypi-dependencies]
code_execution_sandbox_agent_with_e2b = { path = ".", editable = true }
[tool.pixi.tasks]
server = "MAX_SERVE_PORT=8010 max-pipelines serve --model-path modularai/Llama-3.1-8B-Instruct-GGUF --enable-structured-output"
hello = "magic run python hello.py"
agent = "magic run python agent.py"
test = "echo 'test passed'"