SYMBOL INDEX (8 symbols across 1 files) FILE: translate_files.py function count_tokens (line 52) | def count_tokens(text: str, model: str = "gpt-4") -> int: function find_special_blocks (line 62) | def find_special_blocks(text: str) -> List[Tuple[int, int, str]]: function split_text_into_chunks (line 85) | def split_text_into_chunks(text: str, max_tokens: int = 8000) -> List[str]: function translate_chunks (line 210) | async def translate_chunks(chunks: List[str], original_text: str) -> str: function translate_text (line 243) | async def translate_text(text: str) -> str: function process_file (line 265) | async def process_file(file_path: str) -> None: function process_files (line 294) | async def process_files(files: List[str], semaphore: asyncio.Semaphore) ... function main (line 303) | async def main():