Add two new sections to the Pallas documentation: - Sampling parameters: explain that temperature/top_p/top_k are configured via the fast-agent decorator's `request_params`, with a provider support matrix and a note on Claude Opus 4.7 stripping these params in favor of `output_config.effort`. - Metrics: document the Prometheus `/metrics` endpoint exposed on the registry port, including scrape config, full metrics reference table, and notes on where each metric is captured.
30 lines
600 B
TOML
30 lines
600 B
TOML
[project]
|
|
name = "pallas-mcp"
|
|
version = "0.2.2"
|
|
description = "FastAgent MCP Bridge — generic runtime for serving FastAgent agents over StreamableHTTP"
|
|
requires-python = ">=3.13.5"
|
|
dependencies = [
|
|
"fast-agent-mcp>=0.6.10",
|
|
"httpx",
|
|
"prometheus-client",
|
|
"pyyaml",
|
|
"starlette",
|
|
"uvicorn",
|
|
]
|
|
|
|
[project.scripts]
|
|
pallas = "pallas.server:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["pallas"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|