mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-01 06:24:59 -05:00
26 lines
733 B
Python
26 lines
733 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class UrlServiceBase(ABC):
|
|
"""Responsible for building URLs for resources."""
|
|
|
|
@abstractmethod
|
|
def get_image_url(self, image_name: str, thumbnail: bool = False) -> str:
|
|
"""Gets the URL for an image or thumbnail."""
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_model_image_url(self, model_key: str) -> str:
|
|
"""Gets the URL for a model image"""
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_style_preset_image_url(self, style_preset_id: str) -> str:
|
|
"""Gets the URL for a style preset image"""
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_workflow_thumbnail_url(self, workflow_id: str) -> str:
|
|
"""Gets the URL for a workflow thumbnail"""
|
|
pass
|