e9480a18c2
- Remove ProcessManager and process.py - Add get_sd_server_url() config (env/config/default) - Update routes to proxy to external sd-server URL - Remove model switching (handled by external sd-server) - Update CLI serve command - Update tests for new architecture Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
252 B
Python
7 lines
252 B
Python
"""Pydantic models for the sd-server wrapper API."""
|
|
|
|
from __future__ import annotations
|
|
|
|
# Note: ServerConfig and ReloadRequest were removed since we no longer manage
|
|
# sd-server processes internally. The wrapper now proxies to an external sd-server.
|