idk why these weren't committed

This commit is contained in:
2026-03-06 12:48:02 -05:00
parent a982e701ed
commit 1fb6ebc4d0
35 changed files with 17 additions and 85 deletions

View File

@@ -1,41 +1,26 @@
# gui_2.py
from __future__ import annotations
import tomli_w
import threading
import time
import math
import json
import sys
import os
import uuid
import requests # type: ignore[import-untyped]
from pathlib import Path
from tkinter import filedialog, Tk
from typing import Optional, Callable, Any
from src import aggregate
from typing import Optional, Any
from src import ai_client
from src import cost_tracker
from src import shell_runner
from src import session_logger
from src import project_manager
from src import theme_2 as theme
import tomllib
from src import events
import numpy as np
from src import api_hooks
from src import mcp_client
from src import orchestrator_pm
from src import performance_monitor
import numpy as np
from src import log_registry
from src import log_pruner
from src import conductor_tech_lead
from src import multi_agent_conductor
from src import models
from src import app_controller
from src import file_cache
from fastapi import FastAPI, Depends, HTTPException
from fastapi.security.api_key import APIKeyHeader
from pydantic import BaseModel
from imgui_bundle import imgui, hello_imgui, immapp
@@ -171,7 +156,6 @@ class App:
def _test_callback_func_write_to_file(self, data: str) -> None:
"""A dummy function that a custom_callback would execute for testing."""
import os
# Ensure the directory exists if running from a different cwd
os.makedirs("tests/artifacts", exist_ok=True)
with open("tests/artifacts/temp_callback_output.txt", "w") as f: