refactor(types): Phase 4 type hint sweep — core modules

This commit is contained in:
2026-02-28 15:13:55 -05:00
parent ca04026db5
commit 46c2f9a0ca
10 changed files with 52 additions and 42 deletions

View File

@@ -1,11 +1,13 @@
# gemini.py
from __future__ import annotations
import tomllib
from pathlib import Path
from typing import Any
from google import genai
from google.genai import types
_client = None
_chat = None
_client: genai.Client | None = None
_chat: Any = None
def _load_key() -> str:
with open("credentials.toml", "rb") as f: