Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pizzaz_server_python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,4 +324,4 @@ async def _call_tool_request(req: types.CallToolRequest) -> types.ServerResult:
if __name__ == "__main__":
import uvicorn

uvicorn.run("pizzaz_server_python.main:app", host="0.0.0.0", port=8000)
uvicorn.run("main:app", host="0.0.0.0", port=8000)
2 changes: 1 addition & 1 deletion solar-system_server_python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,4 +310,4 @@ async def _call_tool_request(req: types.CallToolRequest) -> types.ServerResult:
if __name__ == "__main__":
import uvicorn

uvicorn.run("solar-system_server_python.main:app", host="0.0.0.0", port=8000)
uvicorn.run("main:app", host="0.0.0.0", port=8000)