From 60cf770f7836add3af3f4eb4b7d3f50f33fac478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EC=A7=80=ED=98=81?= Date: Sat, 15 Nov 2025 19:37:33 +0900 Subject: [PATCH] 1.4.3 : update server/main.py to fit serverless environment --- fastapps/cli/commands/init.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapps/cli/commands/init.py b/fastapps/cli/commands/init.py index 42254a6..ccadab6 100644 --- a/fastapps/cli/commands/init.py +++ b/fastapps/cli/commands/init.py @@ -134,7 +134,7 @@ def load_csp_config(): if __name__ == "__main__": print(f"\\n[START] Starting server with {len(tools)} tools") - uvicorn.run(app, host="0.0.0.0", port=8001) + server.mcp.run(transport="streamable-http") ''' diff --git a/pyproject.toml b/pyproject.toml index 9407fcc..ebaed5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "fastapps" -version = "1.4.2" +version = "1.4.3" description = "A zero-boilerplate framework for building interactive ChatGPT widgets" readme = "README.md" requires-python = ">=3.11"