forked from strands-agents/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
38 lines (33 loc) · 954 Bytes
/
__init__.py
File metadata and controls
38 lines (33 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Email Assistant with RAG and Image Generation
A multi-agent workflow that combines knowledge base retrieval and images generation
to create comprehensive emails.
"""
# Import main components from the email assistant
from .email_assistant import (
create_email_assistant,
create_initial_messages,
main as run_email_assistant,
)
# Re-export components from kb_rag
from kb_rag import retrieve_from_kb, create_analyzer_agent, run_kb_rag
# Re-export components from image_generation_agent
from image_generation_agent import (
generate_image_nova,
create_image_agent,
run_image_agent,
)
__all__ = [
# Email assistant components
"create_email_assistant",
"create_initial_messages",
"run_email_assistant",
# KB RAG components
"retrieve_from_kb",
"create_analyzer_agent",
"run_kb_rag",
# Image generation components
"generate_image_nova",
"create_image_agent",
"run_image_agent",
]