Deployment

This commit is contained in:
Zakhar
2026-09-25 19:44:48 +03:00
parent 596adfdc09
commit 066bfb3c0b
24 changed files with 472 additions and 151 deletions
+2 -2
View File
@@ -751,7 +751,7 @@ def analyze_repository(inp: AnalysisInput, run_ctx: RunContext) -> AnalysisResul
return AnalysisResult(success=True, graph=graph, res_all=res_all, leaf_clusters=leaf_clusters)
def to_networkx(dep_graph: "DependencyGraph", include_external: bool = False) -> nx.DiGraph[DependencyNode]:
def to_networkx(dep_graph: "DependencyGraph", include_external: bool = False) -> "nx.DiGraph[DependencyNode]":
"""
Convert a DependencyGraph into a networkx DiGraph.
@@ -792,7 +792,7 @@ COLS = [
def analyze(
G: nx.DiGraph[DependencyNode],
G: "nx.DiGraph[DependencyNode]",
graph: DependencyGraph, # NOTE: currently unused in the body
label: str = "",
) -> AnalyzeResult:
+3 -1
View File
@@ -13,8 +13,10 @@ import sys
from pathlib import Path
from typing import List, Dict, Any
import requests
from playwright.sync_api import sync_playwright
from agents.architect_ts.analyzer import CodeAnalyzer
from agents.coder.CoderAgent import CoderAgent
from agents.solution_architect.PlannerAgent import PlannerAgent
from agents.tester_web.TesterAgent import TesterAgent
# ---------- Конфигурация ----------
CONFIG_FILE = "config.json"