todo-agent 0.3.1__py3-none-any.whl → 0.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- todo_agent/_version.py +2 -2
- todo_agent/core/conversation_manager.py +1 -1
- todo_agent/core/exceptions.py +54 -3
- todo_agent/core/todo_manager.py +115 -49
- todo_agent/infrastructure/calendar_utils.py +2 -4
- todo_agent/infrastructure/inference.py +95 -50
- todo_agent/infrastructure/llm_client.py +224 -1
- todo_agent/infrastructure/ollama_client.py +68 -77
- todo_agent/infrastructure/openrouter_client.py +70 -73
- todo_agent/infrastructure/prompts/system_prompt.txt +112 -70
- todo_agent/infrastructure/todo_shell.py +2 -16
- todo_agent/interface/cli.py +109 -17
- todo_agent/interface/formatters.py +22 -0
- todo_agent/interface/progress.py +58 -0
- todo_agent/interface/tools.py +142 -23
- {todo_agent-0.3.1.dist-info → todo_agent-0.3.2.dist-info}/METADATA +3 -3
- todo_agent-0.3.2.dist-info/RECORD +30 -0
- todo_agent-0.3.1.dist-info/RECORD +0 -29
- {todo_agent-0.3.1.dist-info → todo_agent-0.3.2.dist-info}/WHEEL +0 -0
- {todo_agent-0.3.1.dist-info → todo_agent-0.3.2.dist-info}/entry_points.txt +0 -0
- {todo_agent-0.3.1.dist-info → todo_agent-0.3.2.dist-info}/licenses/LICENSE +0 -0
- {todo_agent-0.3.1.dist-info → todo_agent-0.3.2.dist-info}/top_level.txt +0 -0
todo_agent/_version.py
CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
28
28
|
commit_id: COMMIT_ID
|
29
29
|
__commit_id__: COMMIT_ID
|
30
30
|
|
31
|
-
__version__ = version = '0.3.
|
32
|
-
__version_tuple__ = version_tuple = (0, 3,
|
31
|
+
__version__ = version = '0.3.2'
|
32
|
+
__version_tuple__ = version_tuple = (0, 3, 2)
|
33
33
|
|
34
34
|
__commit_id__ = commit_id = None
|
@@ -35,7 +35,7 @@ class ConversationManager:
|
|
35
35
|
"""Manages conversation state and memory for LLM interactions."""
|
36
36
|
|
37
37
|
def __init__(
|
38
|
-
self, max_tokens: int =
|
38
|
+
self, max_tokens: int = 64000, max_messages: int = 100, model: str = "gpt-4"
|
39
39
|
):
|
40
40
|
self.history: List[ConversationMessage] = []
|
41
41
|
self.max_tokens = max_tokens
|
todo_agent/core/exceptions.py
CHANGED
@@ -12,16 +12,67 @@ class TodoError(Exception):
|
|
12
12
|
class TaskNotFoundError(TodoError):
|
13
13
|
"""Task not found in todo file."""
|
14
14
|
|
15
|
-
|
15
|
+
def __init__(self, message: str = "Task not found"):
|
16
|
+
super().__init__(message)
|
17
|
+
self.message = message
|
16
18
|
|
17
19
|
|
18
20
|
class InvalidTaskFormatError(TodoError):
|
19
21
|
"""Invalid task format."""
|
20
22
|
|
21
|
-
|
23
|
+
def __init__(self, message: str = "Invalid task format"):
|
24
|
+
super().__init__(message)
|
25
|
+
self.message = message
|
22
26
|
|
23
27
|
|
24
28
|
class TodoShellError(TodoError):
|
25
29
|
"""Subprocess execution error."""
|
26
30
|
|
27
|
-
|
31
|
+
def __init__(self, message: str = "Todo.sh command failed"):
|
32
|
+
super().__init__(message)
|
33
|
+
self.message = message
|
34
|
+
|
35
|
+
|
36
|
+
class ProviderError(Exception):
|
37
|
+
"""Base exception for LLM provider errors."""
|
38
|
+
|
39
|
+
def __init__(self, message: str, error_type: str, provider: str):
|
40
|
+
super().__init__(message)
|
41
|
+
self.message = message
|
42
|
+
self.error_type = error_type
|
43
|
+
self.provider = provider
|
44
|
+
|
45
|
+
|
46
|
+
class MalformedResponseError(ProviderError):
|
47
|
+
"""Provider returned malformed or invalid response."""
|
48
|
+
|
49
|
+
def __init__(self, message: str, provider: str):
|
50
|
+
super().__init__(message, "malformed_response", provider)
|
51
|
+
|
52
|
+
|
53
|
+
class RateLimitError(ProviderError):
|
54
|
+
"""Provider rate limit exceeded."""
|
55
|
+
|
56
|
+
def __init__(self, message: str, provider: str):
|
57
|
+
super().__init__(message, "rate_limit", provider)
|
58
|
+
|
59
|
+
|
60
|
+
class AuthenticationError(ProviderError):
|
61
|
+
"""Provider authentication failed."""
|
62
|
+
|
63
|
+
def __init__(self, message: str, provider: str):
|
64
|
+
super().__init__(message, "auth_error", provider)
|
65
|
+
|
66
|
+
|
67
|
+
class TimeoutError(ProviderError):
|
68
|
+
"""Provider request timed out."""
|
69
|
+
|
70
|
+
def __init__(self, message: str, provider: str):
|
71
|
+
super().__init__(message, "timeout", provider)
|
72
|
+
|
73
|
+
|
74
|
+
class GeneralProviderError(ProviderError):
|
75
|
+
"""General provider error."""
|
76
|
+
|
77
|
+
def __init__(self, message: str, provider: str):
|
78
|
+
super().__init__(message, "general_error", provider)
|
todo_agent/core/todo_manager.py
CHANGED
@@ -19,7 +19,6 @@ class TodoManager:
|
|
19
19
|
project: Optional[str] = None,
|
20
20
|
context: Optional[str] = None,
|
21
21
|
due: Optional[str] = None,
|
22
|
-
recurring: Optional[str] = None,
|
23
22
|
duration: Optional[str] = None,
|
24
23
|
) -> str:
|
25
24
|
"""Add new task with explicit project/context parameters."""
|
@@ -56,33 +55,6 @@ class TodoManager:
|
|
56
55
|
f"Invalid due date format '{due}'. Must be YYYY-MM-DD."
|
57
56
|
)
|
58
57
|
|
59
|
-
if recurring:
|
60
|
-
# Validate recurring format
|
61
|
-
if not recurring.startswith("rec:"):
|
62
|
-
raise ValueError(
|
63
|
-
f"Invalid recurring format '{recurring}'. Must start with 'rec:'."
|
64
|
-
)
|
65
|
-
# Basic validation of recurring syntax
|
66
|
-
parts = recurring.split(":")
|
67
|
-
if len(parts) < 2 or len(parts) > 3:
|
68
|
-
raise ValueError(
|
69
|
-
f"Invalid recurring format '{recurring}'. Expected 'rec:frequency' or 'rec:frequency:interval'."
|
70
|
-
)
|
71
|
-
frequency = parts[1]
|
72
|
-
if frequency not in ["daily", "weekly", "monthly", "yearly"]:
|
73
|
-
raise ValueError(
|
74
|
-
f"Invalid frequency '{frequency}'. Must be one of: daily, weekly, monthly, yearly."
|
75
|
-
)
|
76
|
-
if len(parts) == 3:
|
77
|
-
try:
|
78
|
-
interval = int(parts[2])
|
79
|
-
if interval < 1:
|
80
|
-
raise ValueError("Interval must be at least 1.")
|
81
|
-
except ValueError:
|
82
|
-
raise ValueError(
|
83
|
-
f"Invalid interval '{parts[2]}'. Must be a positive integer."
|
84
|
-
)
|
85
|
-
|
86
58
|
if duration is not None:
|
87
59
|
# Validate duration format (e.g., "30m", "2h", "1d")
|
88
60
|
if not duration or not isinstance(duration, str):
|
@@ -124,9 +96,6 @@ class TodoManager:
|
|
124
96
|
if due:
|
125
97
|
full_description = f"{full_description} due:{due}"
|
126
98
|
|
127
|
-
if recurring:
|
128
|
-
full_description = f"{full_description} {recurring}"
|
129
|
-
|
130
99
|
if duration:
|
131
100
|
full_description = f"{full_description} duration:{duration}"
|
132
101
|
|
@@ -148,24 +117,6 @@ class TodoManager:
|
|
148
117
|
result = self.todo_shell.complete(task_number)
|
149
118
|
return f"Completed task {task_number}: {result}"
|
150
119
|
|
151
|
-
def get_overview(self, **kwargs: Any) -> str:
|
152
|
-
"""Show current task statistics."""
|
153
|
-
tasks = self.todo_shell.list_tasks()
|
154
|
-
completed = self.todo_shell.list_completed()
|
155
|
-
|
156
|
-
task_count = (
|
157
|
-
len([line for line in tasks.split("\n") if line.strip()])
|
158
|
-
if tasks.strip()
|
159
|
-
else 0
|
160
|
-
)
|
161
|
-
completed_count = (
|
162
|
-
len([line for line in completed.split("\n") if line.strip()])
|
163
|
-
if completed.strip()
|
164
|
-
else 0
|
165
|
-
)
|
166
|
-
|
167
|
-
return f"Task Overview:\n- Active tasks: {task_count}\n- Completed tasks: {completed_count}"
|
168
|
-
|
169
120
|
def replace_task(self, task_number: int, new_description: str) -> str:
|
170
121
|
"""Replace entire task content."""
|
171
122
|
result = self.todo_shell.replace(task_number, new_description)
|
@@ -406,3 +357,118 @@ class TodoManager:
|
|
406
357
|
week_number = now.isocalendar()[1]
|
407
358
|
timezone = now.astimezone().tzinfo
|
408
359
|
return f"Current date and time: {now.strftime('%Y-%m-%d %H:%M:%S')} {timezone} ({now.strftime('%A, %B %d, %Y at %I:%M %p')}) - Week {week_number}"
|
360
|
+
|
361
|
+
def created_completed_task(
|
362
|
+
self,
|
363
|
+
description: str,
|
364
|
+
completion_date: Optional[str] = None,
|
365
|
+
project: Optional[str] = None,
|
366
|
+
context: Optional[str] = None,
|
367
|
+
) -> str:
|
368
|
+
"""
|
369
|
+
Create a task and immediately mark it as completed.
|
370
|
+
|
371
|
+
This is a convenience method for handling "I did X on [date]" statements.
|
372
|
+
The task is created with the specified completion date and immediately marked complete.
|
373
|
+
|
374
|
+
Args:
|
375
|
+
description: The task description of what was completed
|
376
|
+
completion_date: Completion date in YYYY-MM-DD format (defaults to today)
|
377
|
+
project: Optional project name (without the + symbol)
|
378
|
+
context: Optional context name (without the @ symbol)
|
379
|
+
|
380
|
+
Returns:
|
381
|
+
Confirmation message with the completed task details
|
382
|
+
"""
|
383
|
+
# Set default completion date to today if not provided
|
384
|
+
if not completion_date:
|
385
|
+
completion_date = datetime.now().strftime("%Y-%m-%d")
|
386
|
+
|
387
|
+
# Validate completion date format
|
388
|
+
try:
|
389
|
+
datetime.strptime(completion_date, "%Y-%m-%d")
|
390
|
+
except ValueError:
|
391
|
+
raise ValueError(
|
392
|
+
f"Invalid completion date format '{completion_date}'. Must be YYYY-MM-DD."
|
393
|
+
)
|
394
|
+
|
395
|
+
# Build the task description with project and context
|
396
|
+
full_description = description
|
397
|
+
|
398
|
+
if project:
|
399
|
+
# Remove any existing + symbols to prevent duplication
|
400
|
+
clean_project = project.strip().lstrip("+")
|
401
|
+
if not clean_project:
|
402
|
+
raise ValueError(
|
403
|
+
"Project name cannot be empty after removing + symbol."
|
404
|
+
)
|
405
|
+
full_description = f"{full_description} +{clean_project}"
|
406
|
+
|
407
|
+
if context:
|
408
|
+
# Remove any existing @ symbols to prevent duplication
|
409
|
+
clean_context = context.strip().lstrip("@")
|
410
|
+
if not clean_context:
|
411
|
+
raise ValueError(
|
412
|
+
"Context name cannot be empty after removing @ symbol."
|
413
|
+
)
|
414
|
+
full_description = f"{full_description} @{clean_context}"
|
415
|
+
|
416
|
+
# Add the task first
|
417
|
+
self.todo_shell.add(full_description)
|
418
|
+
|
419
|
+
# Get the task number by finding the newly added task
|
420
|
+
tasks = self.todo_shell.list_tasks()
|
421
|
+
task_lines = [line.strip() for line in tasks.split("\n") if line.strip()]
|
422
|
+
if not task_lines:
|
423
|
+
raise RuntimeError("Failed to add task - no tasks found after addition")
|
424
|
+
|
425
|
+
# Find the task that matches our description (it should be the last one added)
|
426
|
+
# Look for the task that contains our description
|
427
|
+
task_number = None
|
428
|
+
for i, line in enumerate(task_lines, 1): # Start from 1 for todo.sh numbering
|
429
|
+
if description in line:
|
430
|
+
task_number = i
|
431
|
+
break
|
432
|
+
|
433
|
+
if task_number is None:
|
434
|
+
# Fallback: use the last task number if we can't find a match
|
435
|
+
task_number = len(task_lines)
|
436
|
+
# Log a warning that we're using fallback logic
|
437
|
+
import logging
|
438
|
+
|
439
|
+
logging.warning(
|
440
|
+
f"Could not find exact match for '{description}', using fallback task number {task_number}"
|
441
|
+
)
|
442
|
+
|
443
|
+
# Mark it as complete
|
444
|
+
self.todo_shell.complete(task_number)
|
445
|
+
|
446
|
+
return f"Created and completed task: {full_description} (completed on {completion_date})"
|
447
|
+
|
448
|
+
def restore_completed_task(self, task_number: int) -> str:
|
449
|
+
"""
|
450
|
+
Restore a completed task from done.txt back to todo.txt.
|
451
|
+
|
452
|
+
This method moves a completed task from done.txt back to todo.txt,
|
453
|
+
effectively restoring it to active status.
|
454
|
+
|
455
|
+
Args:
|
456
|
+
task_number: The line number of the completed task in done.txt to restore
|
457
|
+
|
458
|
+
Returns:
|
459
|
+
Confirmation message with the restored task details
|
460
|
+
"""
|
461
|
+
# Validate task number
|
462
|
+
if task_number <= 0:
|
463
|
+
raise ValueError("Task number must be a positive integer")
|
464
|
+
|
465
|
+
# Use the move command to restore the task from done.txt to todo.txt
|
466
|
+
result = self.todo_shell.move(task_number, "todo.txt", "done.txt")
|
467
|
+
|
468
|
+
# Extract the task description from the result for confirmation
|
469
|
+
# The result format is typically: "TODO: X moved from '.../done.txt' to '.../todo.txt'."
|
470
|
+
if "moved from" in result and "to" in result:
|
471
|
+
# Try to extract the task description if possible
|
472
|
+
return f"Restored completed task {task_number} to active status: {result}"
|
473
|
+
else:
|
474
|
+
return f"Restored completed task {task_number} to active status"
|
@@ -15,10 +15,8 @@ def get_calendar_output() -> str:
|
|
15
15
|
Formatted calendar string showing three months side by side
|
16
16
|
"""
|
17
17
|
try:
|
18
|
-
# Use cal
|
19
|
-
result = subprocess.run(
|
20
|
-
["cal", "-3"], capture_output=True, text=True, check=True
|
21
|
-
)
|
18
|
+
# Use cal to get current month calendar
|
19
|
+
result = subprocess.run(["cal"], capture_output=True, text=True, check=True)
|
22
20
|
return result.stdout.strip()
|
23
21
|
except (subprocess.SubprocessError, FileNotFoundError):
|
24
22
|
# Fallback to Python calendar module
|
@@ -13,6 +13,7 @@ try:
|
|
13
13
|
from todo_agent.infrastructure.llm_client_factory import LLMClientFactory
|
14
14
|
from todo_agent.infrastructure.logger import Logger
|
15
15
|
from todo_agent.interface.tools import ToolCallHandler
|
16
|
+
from todo_agent.interface.progress import ToolCallProgress, NoOpProgress
|
16
17
|
except ImportError:
|
17
18
|
from core.conversation_manager import ( # type: ignore[no-redef]
|
18
19
|
ConversationManager,
|
@@ -24,6 +25,7 @@ except ImportError:
|
|
24
25
|
)
|
25
26
|
from infrastructure.logger import Logger # type: ignore[no-redef]
|
26
27
|
from interface.tools import ToolCallHandler # type: ignore[no-redef]
|
28
|
+
from interface.progress import ToolCallProgress, NoOpProgress # type: ignore[no-redef]
|
27
29
|
|
28
30
|
|
29
31
|
class Inference:
|
@@ -68,9 +70,6 @@ class Inference:
|
|
68
70
|
|
69
71
|
def _load_system_prompt(self) -> str:
|
70
72
|
"""Load and format the system prompt from file."""
|
71
|
-
# Generate tools section programmatically
|
72
|
-
tools_section = self._generate_tools_section()
|
73
|
-
|
74
73
|
# Get current datetime for interpolation
|
75
74
|
now = datetime.now()
|
76
75
|
timezone_info = time.tzname[time.daylight]
|
@@ -94,9 +93,8 @@ class Inference:
|
|
94
93
|
with open(prompt_file_path, encoding="utf-8") as f:
|
95
94
|
system_prompt_template = f.read()
|
96
95
|
|
97
|
-
# Format the template with
|
96
|
+
# Format the template with current datetime and calendar
|
98
97
|
return system_prompt_template.format(
|
99
|
-
tools_section=tools_section,
|
100
98
|
current_datetime=current_datetime,
|
101
99
|
calendar_output=calendar_output,
|
102
100
|
)
|
@@ -108,64 +106,28 @@ class Inference:
|
|
108
106
|
self.logger.error(f"Error loading system prompt: {e!s}")
|
109
107
|
raise
|
110
108
|
|
111
|
-
def _generate_tools_section(self) -> str:
|
112
|
-
"""Generate the AVAILABLE TOOLS section with strategic categorization."""
|
113
|
-
tool_categories = {
|
114
|
-
"Discovery Tools": [
|
115
|
-
"list_projects",
|
116
|
-
"list_contexts",
|
117
|
-
"list_tasks",
|
118
|
-
"list_completed_tasks",
|
119
|
-
],
|
120
|
-
"Modification Tools": [
|
121
|
-
"add_task",
|
122
|
-
"complete_task",
|
123
|
-
"replace_task",
|
124
|
-
"append_to_task",
|
125
|
-
"prepend_to_task",
|
126
|
-
],
|
127
|
-
"Management Tools": [
|
128
|
-
"delete_task",
|
129
|
-
"set_priority",
|
130
|
-
"remove_priority",
|
131
|
-
"move_task",
|
132
|
-
],
|
133
|
-
"Maintenance Tools": ["archive_tasks", "deduplicate_tasks", "get_overview"],
|
134
|
-
}
|
135
|
-
|
136
|
-
tools_section = []
|
137
|
-
for category, tool_names in tool_categories.items():
|
138
|
-
tools_section.append(f"\n**{category}:**")
|
139
|
-
for tool_name in tool_names:
|
140
|
-
tool_info = next(
|
141
|
-
(
|
142
|
-
t
|
143
|
-
for t in self.tool_handler.tools
|
144
|
-
if t["function"]["name"] == tool_name
|
145
|
-
),
|
146
|
-
None,
|
147
|
-
)
|
148
|
-
if tool_info:
|
149
|
-
# Get first sentence of description for concise overview
|
150
|
-
first_sentence = (
|
151
|
-
tool_info["function"]["description"].split(".")[0] + "."
|
152
|
-
)
|
153
|
-
tools_section.append(f"- {tool_name}(): {first_sentence}")
|
154
109
|
|
155
|
-
return "\n".join(tools_section)
|
156
110
|
|
157
|
-
def process_request(self, user_input: str) -> tuple[str, float]:
|
111
|
+
def process_request(self, user_input: str, progress_callback: Optional[ToolCallProgress] = None) -> tuple[str, float]:
|
158
112
|
"""
|
159
113
|
Process a user request through the LLM with tool orchestration.
|
160
114
|
|
161
115
|
Args:
|
162
116
|
user_input: Natural language user request
|
117
|
+
progress_callback: Optional progress callback for tool call tracking
|
163
118
|
|
164
119
|
Returns:
|
165
120
|
Tuple of (formatted response for user, thinking time in seconds)
|
166
121
|
"""
|
167
122
|
# Start timing the request
|
168
123
|
start_time = time.time()
|
124
|
+
|
125
|
+
# Initialize progress callback if not provided
|
126
|
+
if progress_callback is None:
|
127
|
+
progress_callback = NoOpProgress()
|
128
|
+
|
129
|
+
# Notify progress callback that thinking has started
|
130
|
+
progress_callback.on_thinking_start()
|
169
131
|
|
170
132
|
try:
|
171
133
|
self.logger.debug(
|
@@ -188,6 +150,30 @@ class Inference:
|
|
188
150
|
messages=messages, tools=self.tool_handler.tools
|
189
151
|
)
|
190
152
|
|
153
|
+
# Check for provider errors
|
154
|
+
if response.get("error", False):
|
155
|
+
error_type = response.get("error_type", "general_error")
|
156
|
+
provider = response.get("provider", "unknown")
|
157
|
+
self.logger.error(f"Provider error from {provider}: {error_type}")
|
158
|
+
|
159
|
+
# Import here to avoid circular imports
|
160
|
+
try:
|
161
|
+
from todo_agent.interface.formatters import get_provider_error_message
|
162
|
+
error_message = get_provider_error_message(error_type)
|
163
|
+
except ImportError:
|
164
|
+
from interface.formatters import get_provider_error_message
|
165
|
+
error_message = get_provider_error_message(error_type)
|
166
|
+
|
167
|
+
# Add error message to conversation
|
168
|
+
self.conversation_manager.add_message(MessageRole.ASSISTANT, error_message)
|
169
|
+
|
170
|
+
# Calculate thinking time and return
|
171
|
+
end_time = time.time()
|
172
|
+
thinking_time = end_time - start_time
|
173
|
+
progress_callback.on_thinking_complete(thinking_time)
|
174
|
+
|
175
|
+
return error_message, thinking_time
|
176
|
+
|
191
177
|
# Extract actual token usage from API response
|
192
178
|
usage = response.get("usage", {})
|
193
179
|
actual_prompt_tokens = usage.get("prompt_tokens", 0)
|
@@ -202,6 +188,8 @@ class Inference:
|
|
202
188
|
|
203
189
|
# Handle multiple tool calls in sequence
|
204
190
|
tool_call_count = 0
|
191
|
+
total_sequences = 0 # We'll track this as we go
|
192
|
+
|
205
193
|
while True:
|
206
194
|
tool_calls = self.llm_client.extract_tool_calls(response)
|
207
195
|
|
@@ -212,6 +200,9 @@ class Inference:
|
|
212
200
|
self.logger.debug(
|
213
201
|
f"Executing tool call sequence #{tool_call_count} with {len(tool_calls)} tools"
|
214
202
|
)
|
203
|
+
|
204
|
+
# Notify progress callback of sequence start
|
205
|
+
progress_callback.on_sequence_complete(tool_call_count, 0) # We don't know total yet
|
215
206
|
|
216
207
|
# Execute all tool calls and collect results
|
217
208
|
tool_results = []
|
@@ -225,6 +216,14 @@ class Inference:
|
|
225
216
|
self.logger.debug(f"Tool Call ID: {tool_call_id}")
|
226
217
|
self.logger.debug(f"Raw tool call: {tool_call}")
|
227
218
|
|
219
|
+
# Get progress description for the tool
|
220
|
+
progress_description = self._get_tool_progress_description(tool_name)
|
221
|
+
|
222
|
+
# Notify progress callback of tool call start
|
223
|
+
progress_callback.on_tool_call_start(
|
224
|
+
tool_name, progress_description, tool_call_count, 0 # We don't know total yet
|
225
|
+
)
|
226
|
+
|
228
227
|
result = self.tool_handler.execute_tool(tool_call)
|
229
228
|
|
230
229
|
# Log tool execution result (success or error)
|
@@ -250,6 +249,30 @@ class Inference:
|
|
250
249
|
messages=messages, tools=self.tool_handler.tools
|
251
250
|
)
|
252
251
|
|
252
|
+
# Check for provider errors in continuation
|
253
|
+
if response.get("error", False):
|
254
|
+
error_type = response.get("error_type", "general_error")
|
255
|
+
provider = response.get("provider", "unknown")
|
256
|
+
self.logger.error(f"Provider error in continuation from {provider}: {error_type}")
|
257
|
+
|
258
|
+
# Import here to avoid circular imports
|
259
|
+
try:
|
260
|
+
from todo_agent.interface.formatters import get_provider_error_message
|
261
|
+
error_message = get_provider_error_message(error_type)
|
262
|
+
except ImportError:
|
263
|
+
from interface.formatters import get_provider_error_message
|
264
|
+
error_message = get_provider_error_message(error_type)
|
265
|
+
|
266
|
+
# Add error message to conversation
|
267
|
+
self.conversation_manager.add_message(MessageRole.ASSISTANT, error_message)
|
268
|
+
|
269
|
+
# Calculate thinking time and return
|
270
|
+
end_time = time.time()
|
271
|
+
thinking_time = end_time - start_time
|
272
|
+
progress_callback.on_thinking_complete(thinking_time)
|
273
|
+
|
274
|
+
return error_message, thinking_time
|
275
|
+
|
253
276
|
# Update with actual tokens from subsequent API calls
|
254
277
|
usage = response.get("usage", {})
|
255
278
|
actual_prompt_tokens = usage.get("prompt_tokens", 0)
|
@@ -261,6 +284,9 @@ class Inference:
|
|
261
284
|
# Calculate and log total thinking time
|
262
285
|
end_time = time.time()
|
263
286
|
thinking_time = end_time - start_time
|
287
|
+
|
288
|
+
# Notify progress callback that thinking is complete
|
289
|
+
progress_callback.on_thinking_complete(thinking_time)
|
264
290
|
|
265
291
|
# Add final assistant response to conversation with thinking time
|
266
292
|
final_content = self.llm_client.extract_content(response)
|
@@ -295,6 +321,25 @@ class Inference:
|
|
295
321
|
self.tool_handler.tools
|
296
322
|
)
|
297
323
|
|
324
|
+
def _get_tool_progress_description(self, tool_name: str) -> str:
|
325
|
+
"""
|
326
|
+
Get user-friendly progress description for a tool.
|
327
|
+
|
328
|
+
Args:
|
329
|
+
tool_name: Name of the tool
|
330
|
+
|
331
|
+
Returns:
|
332
|
+
Progress description string
|
333
|
+
"""
|
334
|
+
tool_def = next((t for t in self.tool_handler.tools
|
335
|
+
if t.get("function", {}).get("name") == tool_name), None)
|
336
|
+
|
337
|
+
if tool_def and "progress_description" in tool_def:
|
338
|
+
return tool_def["progress_description"]
|
339
|
+
|
340
|
+
# Fallback to generic description
|
341
|
+
return f"🔧 Executing {tool_name}..."
|
342
|
+
|
298
343
|
def clear_conversation(self) -> None:
|
299
344
|
"""Clear conversation history."""
|
300
345
|
self.conversation_manager.clear_conversation()
|