Private
Public Access
0
0

began to go through the files and organize imports and gui_2.py's new context defs

still a bunch to sift through after the last ai passes
This commit is contained in:
2026-06-05 21:44:41 -04:00
parent 1d89fcaf8a
commit 873edf42cf
53 changed files with 375 additions and 238 deletions
+9 -5
View File
@@ -37,16 +37,20 @@ See Also:
- src/project_manager.py for persistence layer
"""
from __future__ import annotations
import datetime
import json
import os
from dataclasses import dataclass, field
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
import tomllib
from pydantic import BaseModel
from dataclasses import dataclass, field
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
from pydantic import BaseModel
from src.paths import get_config_path
#region: Constants
PROVIDERS: List[str] = ["gemini", "anthropic", "gemini_cli", "deepseek", "minimax"]
@@ -1040,4 +1044,4 @@ def load_mcp_config(path: str) -> MCPConfiguration:
except Exception:
return MCPConfiguration()
#endregion: MCP Config
#endregion: MCP Config