From 2c04916876886349dfe3dba7d087811c3fe076bb Mon Sep 17 00:00:00 2001 From: cpacker Date: Wed, 25 Sep 2024 11:34:05 -0700 Subject: [PATCH] chore: cleanup --- letta/server/rest_api/static_files.py | 1 - 1 file changed, 1 deletion(-) diff --git a/letta/server/rest_api/static_files.py b/letta/server/rest_api/static_files.py index 2d418d679a..f16a3c4085 100644 --- a/letta/server/rest_api/static_files.py +++ b/letta/server/rest_api/static_files.py @@ -33,7 +33,6 @@ async def serve_spa(): @app.get("/agents/{agent}/chat", include_in_schema=False) async def serve_spa(): - print("serving spa", static_files_path) return FileResponse(os.path.join(static_files_path, "index.html")) @app.get("/agents", include_in_schema=False)