File size: 865 Bytes
3b7f713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Grantforge GSD — Główny tryb działania (od 2026)

Ten pakiet zawiera oficjalną metodykę Grantforge Spec-Driven Development.

GSD jest teraz głównym sposobem przetwarzania wniosków dotacyjnych.
Zamiast starego supervisora, używamy GrantforgeGSDOrchestrator.

Użycie:
    from backend.gsd.gsd_orchestrator import GrantforgeGSDOrchestrator
    from backend.gsd.gsd_state import create_gsd_state

    state = create_gsd_state(project_id="...")
    orch = GrantforgeGSDOrchestrator(state)
    final = orch.run_full_gsd_flow()
"""

from .gsd_orchestrator import GrantforgeGSDOrchestrator
from .gsd_state import GrantforgeGSDState, create_gsd_state, PolishHitlQuestion
from .bridge import execute_gsd_agent

__all__ = [
    "GrantforgeGSDOrchestrator",
    "GrantforgeGSDState",
    "create_gsd_state",
    "PolishHitlQuestion",
    "execute_gsd_agent",
]