Skip to content

Instantly share code, notes, and snippets.

@yydrift-code
yydrift-code / pipecat_issue_4041_flows_onefile_repro.py
Created March 18, 2026 15:25
Pipecat issue #4041 one-file Pipecat Flows ElevenLabs 1008 repro
from __future__ import annotations
import argparse
import asyncio
import os
from dataclasses import dataclass
from typing import Any, Iterable
from dotenv import load_dotenv
from loguru import logger
@yydrift-code
yydrift-code / pipecat_issue_4041_repro.py
Created March 18, 2026 15:25
Pipecat issue #4041 minimal ElevenLabs 1008 repro
from __future__ import annotations
import argparse
import asyncio
import os
from typing import Iterable
from dotenv import load_dotenv
from loguru import logger
from pipecat.frames.frames import (
@yydrift-code
yydrift-code / finchvox-sessions-pagination.patch
Created March 6, 2026 11:09
Patch for finchvox/finchvox issue #27: sessions pagination and duplicate refresh fix
diff --git a/src/finchvox/ui_routes.py b/src/finchvox/ui_routes.py
index 81118bd..9993b58 100644
--- a/src/finchvox/ui_routes.py
+++ b/src/finchvox/ui_routes.py
@@ -25,6 +25,9 @@ if not UI_DIR.exists():
PROJECT_ROOT = Path(__file__).parent.parent.parent
UI_DIR = PROJECT_ROOT / "ui"
+SESSION_PAGE_SIZE_OPTIONS = (10, 20)
+DEFAULT_SESSION_PAGE_SIZE = SESSION_PAGE_SIZE_OPTIONS[0]