()
| 110 | server.load_tool("python") |
| 111 | |
| 112 | def load_sceneXplain_tool(): |
| 113 | SCENEX_API_KEY = os.environ.get('SCENEX_API_KEY', None) |
| 114 | if not SCENEX_API_KEY: |
| 115 | raise RuntimeError("SCENEX_API_KEY is not provided. Please sign up for a free account at https://scenex.jina.ai/, create a new API key, and add it to environment variables.") |
| 116 | server.load_tool("sceneXplain", {"subscription_key": SCENEX_API_KEY}) |
| 117 | |
| 118 | def load_shell_tool(): |
| 119 | server.load_tool("shell") |
no test coverage detected