Coverage for src/lilbee/app/endpoints.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.15.2, created at 2026-08-14 11:46 +0000

1"""Paths the lilbee server serves its agent-facing surfaces at. 

2 

3The server's own mounts and the client config blocks lilbee hands out read 

4these, so a path cannot drift between what lilbee serves and what it tells a 

5client to call. 

6""" 

7 

8from __future__ import annotations 

9 

10MCP_PATH = "/mcp" 

11"""Streamable-http MCP endpoint.""" 

12 

13OPENAI_PATH = "/v1" 

14"""OpenAI-compatible chat completions and model list."""