docs: add module docstring to base.py
This commit is contained in:
parent
9e226e2dae
commit
5d03366dad
1 changed files with 8 additions and 0 deletions
|
|
@ -1,3 +1,11 @@
|
|||
"""
|
||||
Base classes for translation providers.
|
||||
|
||||
This module defines the abstract interface that all translation providers must implement.
|
||||
Providers handle the actual translation of text using external services like OpenAI,
|
||||
Google Translate, or Azure Translator.
|
||||
"""
|
||||
|
||||
from abc import ABC, abstractmethod
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue