Devon own stem/track/channel, per-category LLM routing, settings UI cleanup
Audio: - Devon gets own stem, Reaper track (Input 17), and configurable channel - play_caller_audio accepts stem_name + channel_override params - Reaper script checks 4 voice tracks (Host, Devon, Live Caller, AI Caller) - postprod.py includes devon stem in gap detection Cost optimization: - Per-category model routing: Sonnet for caller dialog, Gemini Flash for everything else - Estimated 65% cost reduction ($4.32 → ~$1.50/show) - Category models configurable from settings UI Frontend: - Settings panel: clean routing grid for output channels, model routing grid for LLM categories - Devon channel added to audio routing - Share icon SVG fill fix (currentColor) - Website homepage iterations Publishing: - Revert Castopod API workaround (API re-enabled) - Fix container media path Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
+48
-7
@@ -802,22 +802,63 @@ section h2 {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.channel-row {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
margin-top: 8px;
|
||||
.routing-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.channel-row label {
|
||||
.routing-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 4px;
|
||||
font-size: 0.85rem;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border-radius: 6px;
|
||||
padding: 5px 8px;
|
||||
}
|
||||
|
||||
.routing-item label {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.routing-label {
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted, #9a8b78);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.channel-input {
|
||||
width: 50px !important;
|
||||
width: 40px !important;
|
||||
text-align: center;
|
||||
font-size: 0.8rem;
|
||||
padding: 3px !important;
|
||||
}
|
||||
|
||||
.model-routing-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.model-routing-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.model-routing-item label {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.model-routing-label {
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-muted, #9a8b78);
|
||||
}
|
||||
|
||||
.model-select {
|
||||
font-size: 0.8rem !important;
|
||||
padding: 4px 6px !important;
|
||||
}
|
||||
|
||||
.modal-content label {
|
||||
|
||||
Reference in New Issue
Block a user