Compare commits

...

1 Commits

Author SHA1 Message Date
83ed64326f Add streamable-http transport option 2026-02-25 19:59:14 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -11,4 +11,4 @@ COPY main.py .
ENV PATH="/app/.venv/bin:$PATH"
CMD ["uv", "run", "python", "main.py", "--transport", "sse", "--port", "8000"]
CMD ["uv", "run", "python", "main.py", "--transport", "streamable-http", "--port", "8000"]

View File

@@ -7,7 +7,7 @@ def _parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser()
parser.add_argument(
"--transport",
choices=["stdio", "sse"],
choices=["stdio", "sse", "streamable-http"],
default="stdio",
)
parser.add_argument("--host", default="0.0.0.0")