CoolFace
Apppublic

thenuke02/cs2-analyzer

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
__init__.py19 linesDownload Raw Back to ai
1"""2OpenSight AI - LLM-powered tactical analysis and coaching.3 4Live modules:5- llm_client: API client for Claude/OpenAI6- tactical: Tactical pattern detection7- strat_engine: Strategy analysis engine8- scouting: Opponent scouting reports9- self_review: Self-review and improvement insights10"""11 12__all__: list[str] = [13    "llm_client",14    "tactical",15    "strat_engine",16    "scouting",17    "self_review",18]19