ScouterAI / modal_apps /deploy.py
stevenbucaille's picture
Enhance app.py with improved user interface and instructions, update model ID in llm.py, and add image classification capabilities across various components. Introduce segment anything functionality and refine README for clarity on model capabilities.
518d841
raw
history blame contribute delete
385 Bytes
from .app import app
from .inference_pipeline import app as inference_pipeline_app
from .segment_anything import app as segment_anything_app
from .task_model_retriever import app as task_model_retriever_app
from .upscaler import app as upscaler_app
app.include(task_model_retriever_app)
app.include(inference_pipeline_app)
app.include(upscaler_app)
app.include(segment_anything_app)