File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ The server configuration can be modified in `serverasync.py` through the `Server
146146``` python
147147@dataclass
148148class ServerConfigModels :
149- model: str = ' stabilityai/stable-diffusion-3-medium'
149+ model: str = ' stabilityai/stable-diffusion-3.5 -medium'
150150 type_models: str = ' t2im'
151151 host: str = ' 0.0.0.0'
152152 port: int = 8500
Original file line number Diff line number Diff line change 33from fastapi .middleware .cors import CORSMiddleware
44from fastapi .concurrency import run_in_threadpool
55from pydantic import BaseModel
6- from . Pipelines import ModelPipelineInitializer
7- from . utils import Utils , RequestScopedPipeline
6+ from Pipelines import ModelPipelineInitializer
7+ from utils import Utils , RequestScopedPipeline
88import logging
9- from diffusers import *
109import random
1110from dataclasses import dataclass
1211import os
2019
2120@dataclass
2221class ServerConfigModels :
23- model : str = 'stabilityai/stable-diffusion-3-medium'
22+ model : str = 'stabilityai/stable-diffusion-3.5 -medium'
2423 type_models : str = 't2im'
2524 constructor_pipeline : Optional [Type ] = None
2625 custom_pipeline : Optional [Type ] = None
You can’t perform that action at this time.
0 commit comments