Merge pull request 'Release v26.04.13.2' (#20) from dev into main
This commit was merged in pull request #20.
This commit is contained in:
@@ -18,6 +18,15 @@ class ChatStatusUpdate extends ChatStreamEvent {
|
|||||||
ChatStatusUpdate(this.status);
|
ChatStatusUpdate(this.status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A single tool call fired during generation. Mirrors the `tool_call` SSE
|
||||||
|
/// event emitted by `generation_task.py` and the `tool_calls` array persisted
|
||||||
|
/// on the assistant Message row — same shape either way so the UI can render
|
||||||
|
/// live chips during streaming and re-render them from storage after reload.
|
||||||
|
class ChatToolCall extends ChatStreamEvent {
|
||||||
|
final Map<String, dynamic> toolCall;
|
||||||
|
ChatToolCall(this.toolCall);
|
||||||
|
}
|
||||||
|
|
||||||
class ChatApi {
|
class ChatApi {
|
||||||
final Dio _dio;
|
final Dio _dio;
|
||||||
const ChatApi(this._dio);
|
const ChatApi(this._dio);
|
||||||
@@ -136,6 +145,14 @@ class ChatApi {
|
|||||||
} catch (_) {
|
} catch (_) {
|
||||||
// Ignore malformed status events
|
// Ignore malformed status events
|
||||||
}
|
}
|
||||||
|
} else if (currentEvent == 'tool_call') {
|
||||||
|
try {
|
||||||
|
final obj = json.decode(data) as Map<String, dynamic>;
|
||||||
|
final tc = obj['tool_call'];
|
||||||
|
if (tc is Map<String, dynamic>) yield ChatToolCall(tc);
|
||||||
|
} catch (_) {
|
||||||
|
// Ignore malformed tool_call events
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (line.isEmpty) {
|
} else if (line.isEmpty) {
|
||||||
currentEvent = ''; // blank line = SSE event separator
|
currentEvent = ''; // blank line = SSE event separator
|
||||||
|
|||||||
@@ -8,6 +8,11 @@ class Message {
|
|||||||
final String status; // "complete" | "generating"
|
final String status; // "complete" | "generating"
|
||||||
final DateTime? createdAt;
|
final DateTime? createdAt;
|
||||||
final Map<String, dynamic>? metadata;
|
final Map<String, dynamic>? metadata;
|
||||||
|
// Tool invocations attached to this message. Each entry matches the shape
|
||||||
|
// persisted by the backend (`function`, `arguments`, `result`, `status`) so
|
||||||
|
// the UI can render the same chips whether they arrive live over SSE or
|
||||||
|
// from a reload.
|
||||||
|
final List<Map<String, dynamic>>? toolCalls;
|
||||||
|
|
||||||
const Message({
|
const Message({
|
||||||
this.id,
|
this.id,
|
||||||
@@ -17,21 +22,39 @@ class Message {
|
|||||||
this.status = 'complete',
|
this.status = 'complete',
|
||||||
this.createdAt,
|
this.createdAt,
|
||||||
this.metadata,
|
this.metadata,
|
||||||
|
this.toolCalls,
|
||||||
});
|
});
|
||||||
|
|
||||||
factory Message.fromJson(Map<String, dynamic> json) => Message(
|
factory Message.fromJson(Map<String, dynamic> json) {
|
||||||
id: json['id'] as int?,
|
final rawCalls = json['tool_calls'];
|
||||||
conversationId: json['conversation_id'] as int,
|
List<Map<String, dynamic>>? parsedCalls;
|
||||||
role: json['role'] == 'user' ? MessageRole.user : MessageRole.assistant,
|
if (rawCalls is List) {
|
||||||
content: json['content'] as String,
|
parsedCalls = [
|
||||||
status: json['status'] as String? ?? 'complete',
|
for (final tc in rawCalls)
|
||||||
createdAt: json['created_at'] != null
|
if (tc is Map<String, dynamic>) tc,
|
||||||
? DateTime.parse(json['created_at'] as String)
|
];
|
||||||
: null,
|
if (parsedCalls.isEmpty) parsedCalls = null;
|
||||||
metadata: json['metadata'] as Map<String, dynamic>?,
|
}
|
||||||
);
|
return Message(
|
||||||
|
id: json['id'] as int?,
|
||||||
|
conversationId: json['conversation_id'] as int,
|
||||||
|
role: json['role'] == 'user' ? MessageRole.user : MessageRole.assistant,
|
||||||
|
content: json['content'] as String,
|
||||||
|
status: json['status'] as String? ?? 'complete',
|
||||||
|
createdAt: json['created_at'] != null
|
||||||
|
? DateTime.parse(json['created_at'] as String)
|
||||||
|
: null,
|
||||||
|
metadata: json['metadata'] as Map<String, dynamic>?,
|
||||||
|
toolCalls: parsedCalls,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Message copyWith({String? content, String? status}) => Message(
|
Message copyWith({
|
||||||
|
String? content,
|
||||||
|
String? status,
|
||||||
|
List<Map<String, dynamic>>? toolCalls,
|
||||||
|
}) =>
|
||||||
|
Message(
|
||||||
id: id,
|
id: id,
|
||||||
conversationId: conversationId,
|
conversationId: conversationId,
|
||||||
role: role,
|
role: role,
|
||||||
@@ -39,5 +62,6 @@ class Message {
|
|||||||
status: status ?? this.status,
|
status: status ?? this.status,
|
||||||
createdAt: createdAt,
|
createdAt: createdAt,
|
||||||
metadata: metadata,
|
metadata: metadata,
|
||||||
|
toolCalls: toolCalls ?? this.toolCalls,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import '../api/chat_api.dart';
|
import '../api/chat_api.dart';
|
||||||
export '../api/chat_api.dart' show ChatStreamEvent, ChatTextChunk, ChatStatusUpdate;
|
export '../api/chat_api.dart'
|
||||||
|
show ChatStreamEvent, ChatTextChunk, ChatStatusUpdate, ChatToolCall;
|
||||||
import '../models/conversation.dart';
|
import '../models/conversation.dart';
|
||||||
import '../models/message.dart';
|
import '../models/message.dart';
|
||||||
|
|
||||||
|
|||||||
@@ -81,16 +81,24 @@ class BriefingNotifier extends AsyncNotifier<BriefingConversation> {
|
|||||||
bool streamedContent = false;
|
bool streamedContent = false;
|
||||||
try {
|
try {
|
||||||
await for (final event in chatApi.streamGeneration(convId)) {
|
await for (final event in chatApi.streamGeneration(convId)) {
|
||||||
if (event is! ChatTextChunk) continue;
|
|
||||||
streamedContent = true;
|
|
||||||
final current = state.value;
|
final current = state.value;
|
||||||
if (current == null) break;
|
if (current == null) break;
|
||||||
final msgs = current.messages;
|
final msgs = current.messages;
|
||||||
if (msgs.isEmpty) continue;
|
if (msgs.isEmpty) continue;
|
||||||
final updated =
|
if (event is ChatTextChunk) {
|
||||||
msgs.last.copyWith(content: msgs.last.content + event.text);
|
streamedContent = true;
|
||||||
state = AsyncData(current.copyWith(
|
final updated =
|
||||||
messages: [...msgs.sublist(0, msgs.length - 1), updated]));
|
msgs.last.copyWith(content: msgs.last.content + event.text);
|
||||||
|
state = AsyncData(current.copyWith(
|
||||||
|
messages: [...msgs.sublist(0, msgs.length - 1), updated]));
|
||||||
|
} else if (event is ChatToolCall) {
|
||||||
|
final last = msgs.last;
|
||||||
|
if (last.role != MessageRole.assistant) continue;
|
||||||
|
final nextCalls = [...?last.toolCalls, event.toolCall];
|
||||||
|
final updated = last.copyWith(toolCalls: nextCalls);
|
||||||
|
state = AsyncData(current.copyWith(
|
||||||
|
messages: [...msgs.sublist(0, msgs.length - 1), updated]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
// Fall through to polling.
|
// Fall through to polling.
|
||||||
@@ -169,16 +177,24 @@ class BriefingNotifier extends AsyncNotifier<BriefingConversation> {
|
|||||||
bool streamedContent = false;
|
bool streamedContent = false;
|
||||||
try {
|
try {
|
||||||
await for (final event in chatApi.streamGeneration(convId)) {
|
await for (final event in chatApi.streamGeneration(convId)) {
|
||||||
if (event is! ChatTextChunk) continue;
|
|
||||||
streamedContent = true;
|
|
||||||
final current = state.value;
|
final current = state.value;
|
||||||
if (current == null) break;
|
if (current == null) break;
|
||||||
final msgs = current.messages;
|
final msgs = current.messages;
|
||||||
if (msgs.isEmpty) continue;
|
if (msgs.isEmpty) continue;
|
||||||
final updated =
|
if (event is ChatTextChunk) {
|
||||||
msgs.last.copyWith(content: msgs.last.content + event.text);
|
streamedContent = true;
|
||||||
state = AsyncData(current.copyWith(
|
final updated =
|
||||||
messages: [...msgs.sublist(0, msgs.length - 1), updated]));
|
msgs.last.copyWith(content: msgs.last.content + event.text);
|
||||||
|
state = AsyncData(current.copyWith(
|
||||||
|
messages: [...msgs.sublist(0, msgs.length - 1), updated]));
|
||||||
|
} else if (event is ChatToolCall) {
|
||||||
|
final last = msgs.last;
|
||||||
|
if (last.role != MessageRole.assistant) continue;
|
||||||
|
final nextCalls = [...?last.toolCalls, event.toolCall];
|
||||||
|
final updated = last.copyWith(toolCalls: nextCalls);
|
||||||
|
state = AsyncData(current.copyWith(
|
||||||
|
messages: [...msgs.sublist(0, msgs.length - 1), updated]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
// Fall through to polling.
|
// Fall through to polling.
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
|
||||||
import '../data/models/conversation.dart';
|
import '../data/models/conversation.dart';
|
||||||
@@ -93,10 +95,27 @@ class MessagesNotifier extends AsyncNotifier<List<Message>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Re-fetch messages without clearing the current list (no flicker).
|
/// Re-fetch messages without clearing the current list (no flicker).
|
||||||
|
///
|
||||||
|
/// Also unfreezes the UI if streaming state got stuck true — this happens
|
||||||
|
/// when an SSE connection dies silently (mobile network handoff, app
|
||||||
|
/// backgrounded mid-stream, reverse proxy dropping idle sockets) and the
|
||||||
|
/// send loop never observes a close. If the server-side message is already
|
||||||
|
/// done, we clear `isStreamingProvider` so the input unlocks.
|
||||||
Future<void> refresh() async {
|
Future<void> refresh() async {
|
||||||
final (_, messages) =
|
final (_, messages) =
|
||||||
await ref.read(chatRepositoryProvider).getMessages(_convId);
|
await ref.read(chatRepositoryProvider).getMessages(_convId);
|
||||||
state = AsyncData(messages);
|
state = AsyncData(messages);
|
||||||
|
Message? lastAssistant;
|
||||||
|
for (var i = messages.length - 1; i >= 0; i--) {
|
||||||
|
if (messages[i].role == MessageRole.assistant) {
|
||||||
|
lastAssistant = messages[i];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (lastAssistant != null && lastAssistant.status != 'generating') {
|
||||||
|
ref.read(isStreamingProvider(_convId).notifier).state = false;
|
||||||
|
ref.read(streamingStatusProvider(_convId).notifier).state = '';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> sendMessage(String content) async {
|
Future<void> sendMessage(String content) async {
|
||||||
@@ -129,9 +148,19 @@ class MessagesNotifier extends AsyncNotifier<List<Message>> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ── Step 2: Stream the response (best effort — silent on failure). ──
|
// ── Step 2: Stream the response (best effort — silent on failure). ──
|
||||||
|
//
|
||||||
|
// We use a StreamIterator with a per-event timeout as a stall watchdog.
|
||||||
|
// Mobile networks occasionally drop SSE sockets silently: the TCP
|
||||||
|
// connection is half-closed, Dio never sees the close, and `await for`
|
||||||
|
// hangs forever with `isStreaming=true`, freezing the input. If no
|
||||||
|
// event arrives within the watchdog window we bail out and let the
|
||||||
|
// polling pass below reconcile state from the server.
|
||||||
|
const stallTimeout = Duration(seconds: 45);
|
||||||
bool streamedContent = false;
|
bool streamedContent = false;
|
||||||
|
final iter = StreamIterator(repo.streamGeneration(convId));
|
||||||
try {
|
try {
|
||||||
await for (final event in repo.streamGeneration(convId)) {
|
while (await iter.moveNext().timeout(stallTimeout)) {
|
||||||
|
final event = iter.current;
|
||||||
if (event is ChatTextChunk) {
|
if (event is ChatTextChunk) {
|
||||||
streamedContent = true;
|
streamedContent = true;
|
||||||
ref.read(streamingStatusProvider(convId).notifier).state = '';
|
ref.read(streamingStatusProvider(convId).notifier).state = '';
|
||||||
@@ -143,10 +172,27 @@ class MessagesNotifier extends AsyncNotifier<List<Message>> {
|
|||||||
} else if (event is ChatStatusUpdate) {
|
} else if (event is ChatStatusUpdate) {
|
||||||
ref.read(streamingStatusProvider(convId).notifier).state =
|
ref.read(streamingStatusProvider(convId).notifier).state =
|
||||||
event.status;
|
event.status;
|
||||||
|
} else if (event is ChatToolCall) {
|
||||||
|
// Append the tool call to the in-flight assistant message so the
|
||||||
|
// chip appears live. The reload pass at the end of this function
|
||||||
|
// will overwrite with the persisted version, which carries the
|
||||||
|
// same shape — no de-dup needed.
|
||||||
|
final msgs = state.requireValue;
|
||||||
|
if (msgs.isEmpty) continue;
|
||||||
|
final last = msgs.last;
|
||||||
|
if (last.role != MessageRole.assistant) continue;
|
||||||
|
final nextCalls = [...?last.toolCalls, event.toolCall];
|
||||||
|
final updated = last.copyWith(toolCalls: nextCalls);
|
||||||
|
state = AsyncData([...msgs.sublist(0, msgs.length - 1), updated]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} on TimeoutException {
|
||||||
|
// Stall watchdog — no SSE event for stallTimeout. Fall through to
|
||||||
|
// polling so the UI eventually unfreezes even if the socket is dead.
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
// SSE failed — fall through to the polling reload below.
|
// SSE failed — fall through to the polling reload below.
|
||||||
|
} finally {
|
||||||
|
await iter.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Step 3: Poll the API until we have a completed assistant response.
|
// ── Step 3: Poll the API until we have a completed assistant response.
|
||||||
|
|||||||
@@ -20,6 +20,25 @@ class _ChatScreenState extends ConsumerState<ChatScreen>
|
|||||||
with WidgetsBindingObserver {
|
with WidgetsBindingObserver {
|
||||||
final _controller = TextEditingController();
|
final _controller = TextEditingController();
|
||||||
final _scrollController = ScrollController();
|
final _scrollController = ScrollController();
|
||||||
|
bool _refreshing = false;
|
||||||
|
|
||||||
|
Future<void> _refreshMessages() async {
|
||||||
|
if (_refreshing) return;
|
||||||
|
setState(() => _refreshing = true);
|
||||||
|
try {
|
||||||
|
await ref
|
||||||
|
.read(messagesProvider(widget.conversationId).notifier)
|
||||||
|
.refresh();
|
||||||
|
} catch (_) {
|
||||||
|
if (mounted) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
|
const SnackBar(content: Text('Could not refresh messages.')),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
if (mounted) setState(() => _refreshing = false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
@@ -136,6 +155,19 @@ class _ChatScreenState extends ConsumerState<ChatScreen>
|
|||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: Text(convTitle?.isNotEmpty == true ? convTitle! : 'Chat'),
|
title: Text(convTitle?.isNotEmpty == true ? convTitle! : 'Chat'),
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
tooltip: 'Refresh',
|
||||||
|
onPressed: _refreshing ? null : _refreshMessages,
|
||||||
|
icon: _refreshing
|
||||||
|
? const SizedBox(
|
||||||
|
width: 18,
|
||||||
|
height: 18,
|
||||||
|
child: CircularProgressIndicator(strokeWidth: 2),
|
||||||
|
)
|
||||||
|
: const Icon(Icons.refresh),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
body: Column(
|
body: Column(
|
||||||
children: [
|
children: [
|
||||||
@@ -147,22 +179,32 @@ class _ChatScreenState extends ConsumerState<ChatScreen>
|
|||||||
child: Text('Could not load messages.'),
|
child: Text('Could not load messages.'),
|
||||||
),
|
),
|
||||||
data: (messages) {
|
data: (messages) {
|
||||||
if (messages.isEmpty) {
|
return RefreshIndicator(
|
||||||
return const Center(
|
onRefresh: _refreshMessages,
|
||||||
child: Text('Send a message to start.'));
|
child: messages.isEmpty
|
||||||
}
|
? ListView(
|
||||||
return ListView.builder(
|
// Needs to be scrollable for RefreshIndicator to
|
||||||
controller: _scrollController,
|
// fire on empty state — plain Center won't work.
|
||||||
padding: const EdgeInsets.symmetric(
|
physics: const AlwaysScrollableScrollPhysics(),
|
||||||
horizontal: 8, vertical: 12),
|
children: const [
|
||||||
itemCount: messages.length,
|
SizedBox(height: 240),
|
||||||
itemBuilder: (context, i) => ChatMessageBubble(
|
Center(child: Text('Send a message to start.')),
|
||||||
message: messages[i],
|
],
|
||||||
streamingStatus: (i == messages.length - 1 &&
|
)
|
||||||
messages[i].status == 'generating')
|
: ListView.builder(
|
||||||
? streamingStatus
|
controller: _scrollController,
|
||||||
: '',
|
physics: const AlwaysScrollableScrollPhysics(),
|
||||||
),
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 8, vertical: 12),
|
||||||
|
itemCount: messages.length,
|
||||||
|
itemBuilder: (context, i) => ChatMessageBubble(
|
||||||
|
message: messages[i],
|
||||||
|
streamingStatus: (i == messages.length - 1 &&
|
||||||
|
messages[i].status == 'generating')
|
||||||
|
? streamingStatus
|
||||||
|
: '',
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
|
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
|
||||||
|
|
||||||
import '../data/models/message.dart';
|
import '../data/models/message.dart';
|
||||||
|
import 'tool_call_chip.dart';
|
||||||
|
|
||||||
class ChatMessageBubble extends StatelessWidget {
|
class ChatMessageBubble extends StatelessWidget {
|
||||||
final Message message;
|
final Message message;
|
||||||
@@ -19,6 +20,12 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
final isUser = message.role == MessageRole.user;
|
final isUser = message.role == MessageRole.user;
|
||||||
final scheme = Theme.of(context).colorScheme;
|
final scheme = Theme.of(context).colorScheme;
|
||||||
final isGenerating = message.status == 'generating';
|
final isGenerating = message.status == 'generating';
|
||||||
|
final toolCalls = message.toolCalls ?? const [];
|
||||||
|
|
||||||
|
// An assistant bubble with no text, no tool calls, and still generating
|
||||||
|
// falls back to the spinner+status "waiting for the first token" view.
|
||||||
|
final showSpinnerOnly =
|
||||||
|
isGenerating && message.content.isEmpty && toolCalls.isEmpty;
|
||||||
|
|
||||||
return Align(
|
return Align(
|
||||||
alignment: isUser ? Alignment.centerRight : Alignment.centerLeft,
|
alignment: isUser ? Alignment.centerRight : Alignment.centerLeft,
|
||||||
@@ -29,7 +36,6 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
margin: const EdgeInsets.symmetric(vertical: 4, horizontal: 4),
|
margin: const EdgeInsets.symmetric(vertical: 4, horizontal: 4),
|
||||||
decoration: isUser
|
decoration: isUser
|
||||||
? BoxDecoration(
|
? BoxDecoration(
|
||||||
// Ghost style: transparent bg, thin border
|
|
||||||
color: Colors.transparent,
|
color: Colors.transparent,
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
color: scheme.primary.withValues(alpha: 0.35),
|
color: scheme.primary.withValues(alpha: 0.35),
|
||||||
@@ -43,7 +49,6 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
: BoxDecoration(
|
: BoxDecoration(
|
||||||
// Assistant: elevated surface + left accent border
|
|
||||||
color: scheme.surfaceContainerHighest,
|
color: scheme.surfaceContainerHighest,
|
||||||
border: Border(
|
border: Border(
|
||||||
left: BorderSide(color: scheme.primary, width: 2),
|
left: BorderSide(color: scheme.primary, width: 2),
|
||||||
@@ -57,46 +62,102 @@ class ChatMessageBubble extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8),
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8),
|
||||||
child: isGenerating && message.content.isEmpty
|
child: showSpinnerOnly
|
||||||
? Row(
|
? _buildSpinner(scheme)
|
||||||
|
: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
// Accumulated tool-call chips: visible both during
|
||||||
width: 16,
|
// streaming (fed live over SSE) and after reload (from
|
||||||
height: 16,
|
// the persisted message.tool_calls array).
|
||||||
child: CircularProgressIndicator(
|
if (toolCalls.isNotEmpty) ...[
|
||||||
strokeWidth: 2,
|
Wrap(
|
||||||
color: scheme.onSurfaceVariant,
|
spacing: 6,
|
||||||
|
runSpacing: 6,
|
||||||
|
children: [
|
||||||
|
for (final tc in toolCalls) ToolCallChip(toolCall: tc),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(height: 6),
|
||||||
if (streamingStatus.isNotEmpty) ...[
|
],
|
||||||
const SizedBox(width: 8),
|
// Rolling status line — shows backend stage text
|
||||||
Flexible(
|
// ("Creating note", "Searching calendar") while the
|
||||||
child: Text(
|
// model is between tool rounds or just before the
|
||||||
streamingStatus,
|
// first token. Stays above any already-streamed text
|
||||||
style: TextStyle(
|
// so the user can see what's happening mid-turn.
|
||||||
fontSize: 12,
|
if (isGenerating && streamingStatus.isNotEmpty) ...[
|
||||||
color: scheme.onSurfaceVariant,
|
Row(
|
||||||
fontStyle: FontStyle.italic,
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
width: 12,
|
||||||
|
height: 12,
|
||||||
|
child: CircularProgressIndicator(
|
||||||
|
strokeWidth: 1.5,
|
||||||
|
color: scheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 6),
|
||||||
|
Flexible(
|
||||||
|
child: Text(
|
||||||
|
streamingStatus,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 11,
|
||||||
|
color: scheme.onSurfaceVariant,
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
],
|
||||||
|
if (message.content.isNotEmpty)
|
||||||
|
MarkdownBody(
|
||||||
|
data: message.content,
|
||||||
|
styleSheet: MarkdownStyleSheet(
|
||||||
|
p: TextStyle(
|
||||||
|
color: isUser
|
||||||
|
? scheme.onSurface.withValues(alpha: 0.75)
|
||||||
|
: scheme.onSurface,
|
||||||
|
fontSize: 14,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
|
||||||
],
|
],
|
||||||
)
|
|
||||||
: MarkdownBody(
|
|
||||||
data: message.content.isEmpty ? '…' : message.content,
|
|
||||||
styleSheet: MarkdownStyleSheet(
|
|
||||||
p: TextStyle(
|
|
||||||
color: isUser
|
|
||||||
? scheme.onSurface.withValues(alpha: 0.75)
|
|
||||||
: scheme.onSurface,
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _buildSpinner(ColorScheme scheme) {
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
width: 16,
|
||||||
|
height: 16,
|
||||||
|
child: CircularProgressIndicator(
|
||||||
|
strokeWidth: 2,
|
||||||
|
color: scheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (streamingStatus.isNotEmpty) ...[
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Flexible(
|
||||||
|
child: Text(
|
||||||
|
streamingStatus,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 12,
|
||||||
|
color: scheme.onSurfaceVariant,
|
||||||
|
fontStyle: FontStyle.italic,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,181 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:go_router/go_router.dart';
|
||||||
|
|
||||||
|
import '../core/constants.dart';
|
||||||
|
|
||||||
|
/// Human-readable labels for each backend tool. Kept in sync with
|
||||||
|
/// `_TOOL_LABELS` in `fabledassistant/services/generation_task.py` so the
|
||||||
|
/// mobile chips use the same wording as the web ToolCallCard status pills.
|
||||||
|
const Map<String, String> _toolLabels = {
|
||||||
|
'create_note': 'Created note',
|
||||||
|
'update_note': 'Updated note',
|
||||||
|
'delete_note': 'Deleted note',
|
||||||
|
'create_task': 'Created task',
|
||||||
|
'update_task': 'Updated task',
|
||||||
|
'delete_task': 'Deleted task',
|
||||||
|
'read_note': 'Read note',
|
||||||
|
'list_notes': 'Listed notes',
|
||||||
|
'list_tasks': 'Searched tasks',
|
||||||
|
'search_notes': 'Searched notes',
|
||||||
|
'create_event': 'Created event',
|
||||||
|
'list_events': 'Searched calendar',
|
||||||
|
'search_events': 'Searched calendar',
|
||||||
|
'update_event': 'Updated event',
|
||||||
|
'delete_event': 'Removed event',
|
||||||
|
'list_calendars': 'Listed calendars',
|
||||||
|
'search_web': 'Searched the web',
|
||||||
|
'research_topic': 'Researched topic',
|
||||||
|
'search_images': 'Searched images',
|
||||||
|
'create_project': 'Created project',
|
||||||
|
'update_project': 'Updated project',
|
||||||
|
'list_projects': 'Listed projects',
|
||||||
|
'get_project': 'Read project',
|
||||||
|
'search_projects': 'Searched projects',
|
||||||
|
'create_milestone': 'Created milestone',
|
||||||
|
'update_milestone': 'Updated milestone',
|
||||||
|
'list_milestones': 'Listed milestones',
|
||||||
|
'set_rag_scope': 'Changed knowledge scope',
|
||||||
|
'calculate': 'Calculated',
|
||||||
|
'read_article': 'Read article',
|
||||||
|
'get_profile': 'Read profile',
|
||||||
|
'update_profile': 'Updated profile',
|
||||||
|
'update_person': 'Updated person',
|
||||||
|
'update_place': 'Updated place',
|
||||||
|
'add_task_log': 'Logged task progress',
|
||||||
|
};
|
||||||
|
|
||||||
|
IconData _iconFor(String fn) {
|
||||||
|
if (fn.contains('note')) return Icons.sticky_note_2_outlined;
|
||||||
|
if (fn.contains('task')) return Icons.check_circle_outline;
|
||||||
|
if (fn.contains('event') || fn.contains('calendar')) {
|
||||||
|
return Icons.event_outlined;
|
||||||
|
}
|
||||||
|
if (fn.contains('project')) return Icons.folder_outlined;
|
||||||
|
if (fn.contains('milestone')) return Icons.flag_outlined;
|
||||||
|
if (fn.contains('web') || fn.contains('research') || fn.contains('article')) {
|
||||||
|
return Icons.public;
|
||||||
|
}
|
||||||
|
if (fn.contains('image')) return Icons.image_outlined;
|
||||||
|
if (fn.contains('person') || fn.contains('profile')) {
|
||||||
|
return Icons.person_outline;
|
||||||
|
}
|
||||||
|
if (fn.contains('place')) return Icons.place_outlined;
|
||||||
|
if (fn.contains('rag') || fn.contains('scope')) return Icons.tune;
|
||||||
|
if (fn.contains('calculate')) return Icons.calculate_outlined;
|
||||||
|
return Icons.auto_awesome;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Pull the destination route for this tool call from its `result` payload,
|
||||||
|
/// if the tool produced something we can navigate to. Returns `null` for
|
||||||
|
/// read-only / no-target tools so the chip stays visible but non-tappable.
|
||||||
|
///
|
||||||
|
/// Backend tool results use the shape:
|
||||||
|
/// `{success, type: "note"|"task"|"event"|"project"|..., data: {id, ...}}`
|
||||||
|
/// which is defined alongside each tool handler (see
|
||||||
|
/// `services/tools/notes.py`, `calendar.py`, etc.).
|
||||||
|
String? _routeForToolCall(Map<String, dynamic> tc) {
|
||||||
|
final result = tc['result'];
|
||||||
|
if (result is! Map<String, dynamic>) return null;
|
||||||
|
if (result['success'] != true) return null;
|
||||||
|
final type = result['type'] as String?;
|
||||||
|
final data = result['data'];
|
||||||
|
if (type == null || data is! Map<String, dynamic>) return null;
|
||||||
|
final id = data['id'];
|
||||||
|
if (id is! int) return null;
|
||||||
|
switch (type) {
|
||||||
|
case 'note':
|
||||||
|
return Routes.noteDetail.replaceFirst(':id', '$id');
|
||||||
|
case 'task':
|
||||||
|
return Routes.taskEdit.replaceFirst(':id', '$id');
|
||||||
|
case 'event':
|
||||||
|
case 'event_updated':
|
||||||
|
// No single-event route on mobile — fall back to the calendar.
|
||||||
|
return Routes.calendar;
|
||||||
|
case 'project':
|
||||||
|
return Routes.projectTasks.replaceFirst(':id', '$id');
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Small status pill rendered inside an assistant message bubble for each
|
||||||
|
/// tool invocation. Mirrors the web app's ToolCallCard header at a glance —
|
||||||
|
/// icon + label + success/error tint — and, when the tool produced a
|
||||||
|
/// navigable entity (note, task, event, project), tapping the chip opens it.
|
||||||
|
class ToolCallChip extends StatelessWidget {
|
||||||
|
final Map<String, dynamic> toolCall;
|
||||||
|
const ToolCallChip({super.key, required this.toolCall});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final scheme = Theme.of(context).colorScheme;
|
||||||
|
final function = (toolCall['function'] as String?) ?? 'tool';
|
||||||
|
final status = (toolCall['status'] as String?) ?? 'success';
|
||||||
|
final isError = status == 'error';
|
||||||
|
final label = _toolLabels[function] ?? function;
|
||||||
|
|
||||||
|
final route = isError ? null : _routeForToolCall(toolCall);
|
||||||
|
|
||||||
|
final bg = isError
|
||||||
|
? scheme.errorContainer.withValues(alpha: 0.55)
|
||||||
|
: scheme.primary.withValues(alpha: 0.12);
|
||||||
|
final fg = isError ? scheme.onErrorContainer : scheme.primary;
|
||||||
|
|
||||||
|
// Pull the entity title from the result payload so the chip can show
|
||||||
|
// "Created note: Grocery List" instead of a generic label. Falls back
|
||||||
|
// to the generic label when the tool didn't return a titled entity.
|
||||||
|
String? entityTitle;
|
||||||
|
final result = toolCall['result'];
|
||||||
|
if (result is Map<String, dynamic>) {
|
||||||
|
final data = result['data'];
|
||||||
|
if (data is Map<String, dynamic>) {
|
||||||
|
final t = data['title'];
|
||||||
|
if (t is String && t.isNotEmpty) entityTitle = t;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
final displayText =
|
||||||
|
entityTitle != null ? '$label: $entityTitle' : label;
|
||||||
|
|
||||||
|
final chip = Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: bg,
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
border: Border.all(color: fg.withValues(alpha: 0.35), width: 0.5),
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
Icon(_iconFor(function), size: 13, color: fg),
|
||||||
|
const SizedBox(width: 5),
|
||||||
|
Flexible(
|
||||||
|
child: Text(
|
||||||
|
displayText,
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 11,
|
||||||
|
color: fg,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (route != null) ...[
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
Icon(Icons.arrow_forward, size: 11, color: fg),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (route == null) return chip;
|
||||||
|
return Material(
|
||||||
|
color: Colors.transparent,
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
child: InkWell(
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
onTap: () => context.push(route),
|
||||||
|
child: chip,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user