This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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] |