WIP: I HATE PYTHON

This commit is contained in:
2026-03-05 13:55:40 -05:00
parent 107608cd76
commit 5e69617f88
43 changed files with 1854 additions and 1671 deletions

View File

@@ -1,6 +1,6 @@
import json
import ai_client
import mma_prompts
from src import ai_client
from src import mma_prompts
import re
from typing import Any
@@ -49,8 +49,8 @@ def generate_tickets(track_brief: str, module_skeletons: str) -> list[dict[str,
ai_client.set_custom_system_prompt(old_system_prompt or "")
ai_client.current_tier = None
from dag_engine import TrackDAG
from models import Ticket
from src.dag_engine import TrackDAG
from src.models import Ticket
def topological_sort(tickets: list[dict[str, Any]]) -> list[dict[str, Any]]:
"""