From 31bea4b7e87be0cc0874c54f6b4c70de6f157540 Mon Sep 17 00:00:00 2001 From: David <17435126+DavidLMS@users.noreply.github.com> Date: Fri, 16 Aug 2024 11:38:26 +0200 Subject: [PATCH] Modify __init__ for docs Modify por add documentation of all submodules --- aphra/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aphra/__init__.py b/aphra/__init__.py index e2929dc..cec474d 100644 --- a/aphra/__init__.py +++ b/aphra/__init__.py @@ -5,5 +5,8 @@ """ from .translate import translate +from . import llm_client +from . import prompts +from . import parsers -__all__ = ['translate'] +__all__ = ['translate', 'llm_client', 'prompts', 'parsers']