stevenbucaille's picture
Add initial project structure with core functionality for image processing agents
7e327f2
raw
history blame
289 Bytes
import modal
from .app import app
from .object_detection_tool import app as object_detection_tool_app
from .upscaler import app as upscaler_tool_app
from .rag_tool import app as rag_tool_app
app.include(object_detection_tool_app)
app.include(upscaler_tool_app)
app.include(rag_tool_app)