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:
+9
-5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user