Deployment
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user