File size: 289 Bytes
7e327f2
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)