(self, host : str = "0.0.0.0", port : int = 8079)
| 92 | return name in self.loaded_tools |
| 93 | |
| 94 | def serve(self, host : str = "0.0.0.0", port : int = 8079): |
| 95 | uvicorn.run(self.api, host=host, port=port) |
| 96 | |
| 97 | def list_tools(self) -> List[str]: |
| 98 | return list_tools() |