grantforge-api / backend /gsd /__init__.py
GrantForge Bot
Deploy to Hugging Face
afd56bc
"""
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",
]