| from __future__ import annotations | |
| from typing import Any | |
| from .crawl_web_site import SCHEMA as crawl_web_site | |
| from .get_country_profile import SCHEMA as get_country_profile | |
| from .scrape_web_page import SCHEMA as scrape_web_page | |
| from .search_immigration_info import SCHEMA as search_immigration_info | |
| from .think import SCHEMA as think | |
| from .update_globe import SCHEMA as update_globe | |
| TOOL_SCHEMAS: list[dict[str, Any]] = [ | |
| think, | |
| get_country_profile, | |
| search_immigration_info, | |
| scrape_web_page, | |
| crawl_web_site, | |
| update_globe, | |
| ] | |