mih-project/mih_ui/lib/mih_providers/ollama_provider.dart
2026-07-01 14:01:25 +02:00

176 lines
5.9 KiB
Dart

import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter_ai_toolkit/flutter_ai_toolkit.dart' as ai_toolkit;
import 'package:ken_logger/ken_logger.dart';
import 'package:ollama_dart/ollama_dart.dart' as ollama;
import 'package:cross_file/cross_file.dart';
class OllamaProvider extends ai_toolkit.LlmProvider with ChangeNotifier {
OllamaProvider({
required String baseUrl,
// required Map<String, String> headers,
// required Map<String, String> queryParams,
required String model,
String? systemPrompt,
bool? think,
}) : _client = ollama.OllamaClient(
config: ollama.OllamaConfig(
baseUrl: baseUrl,
// defaultHeaders: headers,
// defaultQueryParams: queryParams,
),
),
_model = model,
_systemPrompt = systemPrompt,
_think = think,
_history = [];
final ollama.OllamaClient _client;
final String _model;
final List<ai_toolkit.ChatMessage> _history;
final String? _systemPrompt;
final bool? _think;
@override
Stream<String> generateStream(
String prompt, {
Iterable<ai_toolkit.Attachment> attachments = const [],
}) async* {
final messages = _mapToOllamaMessages([
ai_toolkit.ChatMessage.user(prompt, attachments),
]);
yield* _generateStream(messages);
}
Stream<String> speechToText(XFile audioFile) async* {
KenLogger.success("Inside Custom speechToText funtion");
// 1. Convert the XFile to the attachment format needed for the LLM.
final attachments = [await ai_toolkit.FileAttachment.fromFile(audioFile)];
KenLogger.success("added attachment for audio file");
// 2. Define the transcription prompt, mirroring the logic from LlmChatView.
const prompt =
'translate the attached audio to text; provide the result of that '
'translation as just the text of the translation itself. be careful to '
'separate the background audio from the foreground audio and only '
'provide the result of translating the foreground audio.';
KenLogger.success("Created Prompt");
// 3. Use your existing Ollama API call to process the prompt and attachment.
// We are essentially running a new, one-off chat session for transcription.
yield* generateStream(
prompt,
attachments: attachments,
);
KenLogger.success("done");
}
@override
Stream<String> sendMessageStream(
String prompt, {
Iterable<ai_toolkit.Attachment> attachments = const [],
}) async* {
KenLogger.success("sendMessageStream called with: $prompt");
final userMessage = ai_toolkit.ChatMessage.user(prompt, attachments);
final llmMessage = ai_toolkit.ChatMessage.llm();
_history.addAll([userMessage, llmMessage]);
notifyListeners();
KenLogger.success("History after adding messages: ${_history.length}");
final messages = _mapToOllamaMessages(_history);
final stream = _generateStream(messages);
yield* stream.map((chunk) {
llmMessage.append(chunk);
notifyListeners();
return chunk;
});
KenLogger.success("Stream completed for: $prompt");
notifyListeners();
}
@override
Iterable<ai_toolkit.ChatMessage> get history => _history;
void resetChat() {
_history.clear();
notifyListeners();
}
@override
set history(Iterable<ai_toolkit.ChatMessage> history) {
_history.clear();
_history.addAll(history);
notifyListeners();
}
Stream<String> _generateStream(List<ollama.ChatMessage> messages) async* {
final allMessages = <ollama.ChatMessage>[];
if (_systemPrompt != null && _systemPrompt.isNotEmpty) {
KenLogger.success("Adding system prompt to the conversation");
allMessages.add(ollama.ChatMessage.system(
_systemPrompt,
));
}
allMessages.addAll(messages);
final stream = _client.chat.createStream(
request: ollama.ChatRequest(
model: _model,
messages: allMessages,
think: ollama.ThinkValue.enabled(_think ?? false),
),
);
yield* stream.map((res) => res.message?.content ?? '');
}
List<ollama.ChatMessage> _mapToOllamaMessages(
List<ai_toolkit.ChatMessage> messages) {
return messages.map((message) {
switch (message.origin) {
case ai_toolkit.MessageOrigin.user:
if (message.attachments.isEmpty) {
return ollama.ChatMessage.user(
message.text ?? '',
);
}
final imageAttachments = <String>[];
final docAttachments = <String>[];
if (message.text != null && message.text!.isNotEmpty) {
docAttachments.add(message.text!);
}
for (final attachment in message.attachments) {
if (attachment is ai_toolkit.FileAttachment) {
final mimeType = attachment.mimeType.toLowerCase();
if (mimeType.startsWith('image/')) {
imageAttachments.add(base64Encode(attachment.bytes));
} else if (mimeType == 'application/pdf' ||
mimeType.startsWith('text/')) {
throw ai_toolkit.LlmFailureException(
"\n\nAww, that file is a little too advanced for us right now ($mimeType)! We're still learning, but we'll get there! Please try sending us a different file type.\n\nHint: We can handle images quite well!",
);
}
} else {
throw ai_toolkit.LlmFailureException(
'Unsupported attachment type: $attachment',
);
}
}
return ollama.ChatMessage.user(
docAttachments.join(' '),
images: imageAttachments,
);
case ai_toolkit.MessageOrigin.llm:
return ollama.ChatMessage.assistant(
message.text ?? '',
);
}
}).toList(growable: false);
}
@override
void dispose() {
_client.close();
super.dispose();
}
}