diff --git a/examples/browser_tool.py b/examples/browser_tool.py index 531b4c8..b751acb 100644 --- a/examples/browser_tool.py +++ b/examples/browser_tool.py @@ -1,9 +1,12 @@ from __future__ import annotations -from browser_tool_helpers import Browser -from ollama import Client + import os from typing import Any, Dict, List +from browser_tool_helpers import Browser + +from ollama import Client + def main() -> None: client = Client(headers={'Authorization': os.getenv('OLLAMA_API_KEY')}) diff --git a/examples/browser_tool_helpers.py b/examples/browser_tool_helpers.py index 501cdb8..74de948 100644 --- a/examples/browser_tool_helpers.py +++ b/examples/browser_tool_helpers.py @@ -1,9 +1,9 @@ from __future__ import annotations +import re from dataclasses import dataclass, field from datetime import datetime from typing import Any, Dict, List, Optional, Protocol, Tuple -import re from urllib.parse import urlparse from ollama import Client