Files
neuron-tai/pyproject.toml
Dobromir Popov 3b7ef2743d feat: add OpenAI-compatible gateway
- GET /v1/health, GET /v1/models, POST /v1/chat/completions (streaming + non-streaming)
- OpenAI SDK, LangChain ChatOpenAI, and SSE streaming integration tests
- Tracker-backed GET /v1/models endpoint
- OpenAI-format errors for unavailable model (503) and pipeline failures
- Malformed JSON body handled with 400 instead of crash
- Test deps (openai, langchain-openai) declared in root pyproject dev extras

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-29 01:52:45 +03:00

16 lines
380 B
TOML

[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "distributed-inference-network"
version = "0.1.0"
description = "Distributed Inference Network monorepo root"
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["pytest>=8", "openai>=1", "langchain-openai>=0.1"]
[tool.pytest.ini_options]
testpaths = ["tests"]