Skip to content

Commit 45695fd

Browse files
committed
Small adjustments
1 parent 8fa540b commit 45695fd

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,20 @@ TalkiTo lets developers talk, slack and whatsapp with AI code editors. It can be
1111
git clone https://github.com/robdmac/talkito.git
1212
cd talkito
1313

14-
pip install -e ".[all]" # All features
14+
# Create and activate virtual environment (recommended)
15+
python3 -m venv venv
16+
source venv/bin/activate
1517

18+
# Install system dependencies (macOS)
19+
brew install portaudio
20+
21+
# Install package with all features
22+
pip install -e ".[all]"
23+
24+
# Run this in a directory you want to use claude with
1625
talkito claude
1726
```
27+
1828
or for the web extension run as
1929
```commandline
2030
talkito --mcp-sse-server

talkito/profiles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def strip_symbols_from(self, text: str) -> str:
220220
CLAUDE_PROFILE = Profile(
221221
name='claude',
222222
response_prefix='⏺',
223-
continuation_prefix=r'^\s+[a-zA-Z0-9]',
223+
continuation_prefix=r'^\s+[\w()\'"]',
224224
question_prefix=r'│ Do',
225225
raw_skip_patterns=[
226226
r'\[38;5;153m│.*\[38;5;246m\d+', # Box drawing + line numbers

talkito/tts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _base_log_message(level: str, message: str, logger_name: str = None):
6868
# Configuration constants
6969
MIN_SPEAK_LENGTH = 1 # Minimum characters before speaking
7070
CACHE_SIZE = 1000 # Cache size for similarity checking
71-
CACHE_TIMEOUT = 1800 # Seconds before a cached item can be spoken again
71+
CACHE_TIMEOUT = 18000 # Seconds before a cached item can be spoken again
7272
SIMILARITY_THRESHOLD = 0.85 # How similar text must be to be considered a repeat
7373
DEBOUNCE_TIME = 0.5 # Seconds to wait before speaking rapidly changing text
7474

0 commit comments

Comments
 (0)