()
| 36 | server.load_tool("wolframalpha", {"subscription_key": WOLFRAMALPH_APP_ID}) |
| 37 | |
| 38 | def load_bing_search_tool(): |
| 39 | BING_SUBSCRIPT_KEY = os.environ.get('BING_SUBSCRIPT_KEY', None) |
| 40 | if not BING_SUBSCRIPT_KEY: |
| 41 | raise RuntimeError("Bing search key not provided, please register one from https://www.microsoft.com/en-us/bing/apis/bing-web-search-api and add it to environment variables.") |
| 42 | server.load_tool("bing_search", {"subscription_key": BING_SUBSCRIPT_KEY}) |
| 43 | |
| 44 | def load_office_ppt_tool(): |
| 45 | server.load_tool("office-ppt") |
no test coverage detected