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:
+12
-6
@@ -10,15 +10,18 @@ import time
|
||||
import tomli_w
|
||||
import traceback
|
||||
import uuid
|
||||
|
||||
# TODO(Ed): Eliminate these?
|
||||
from dataclasses import asdict
|
||||
from datetime import datetime
|
||||
from fastapi import FastAPI, Depends, HTTPException
|
||||
from datetime import datetime
|
||||
from fastapi import FastAPI, Depends, HTTPException
|
||||
from pathlib import Path
|
||||
from typing import Any, List, Dict, Optional, Callable
|
||||
|
||||
from fastapi.security.api_key import APIKeyHeader
|
||||
from pathlib import Path
|
||||
from typing import Any, List, Dict, Optional, Callable
|
||||
|
||||
from src import aggregate
|
||||
from src import models
|
||||
from src.models import GenerateRequest, ConfirmRequest
|
||||
from src import ai_client
|
||||
from src import conductor_tech_lead
|
||||
from src import events
|
||||
@@ -35,8 +38,11 @@ from src import shell_runner
|
||||
from src import theme_2 as theme
|
||||
from src import thinking_parser
|
||||
from src import tool_presets
|
||||
|
||||
from src.context_presets import ContextPresetManager
|
||||
from src.file_cache import ASTParser
|
||||
from src.file_cache import ASTParser
|
||||
from src.models import GenerateRequest, ConfirmRequest
|
||||
|
||||
|
||||
def parse_symbols(text: str) -> list[str]:
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user