Skip to content

Commit

Permalink
restrict component imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aaazzam committed Nov 15, 2023
1 parent a5f080a commit a4bc53a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/marvin/components/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
from .ai_function import ai_fn
from .ai_function import ai_fn, AIFunction
from .ai_classifier import ai_classifier, AIClassifier
from .ai_model import ai_model
from .prompt_function import prompt_fn, PromptFn

__all__ = [
"ai_fn",
"ai_classifier",
"ai_model",
"prompt_fn",
"AIFunction",
"AIClassifier",
"PromptFn",
]

0 comments on commit a4bc53a

Please sign in to comment.