Фиксация изменений

This commit is contained in:
2026-03-05 11:03:17 +03:00
parent 1ef0b4d68c
commit 417b8b6f72
261 changed files with 8215 additions and 332 deletions

View File

@@ -0,0 +1,7 @@
from __future__ import annotations
from typing import Protocol
class TextGenerator(Protocol):
def generate(self, prompt_name: str, user_input: str, *, log_context: str | None = None) -> str: ...