mirror of
https://github.com/foss42/apidash.git
synced 2025-12-01 18:28:25 +08:00
8 lines
244 B
Dart
8 lines
244 B
Dart
import 'package:apidash/services/ollama_service.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
// Add this to your existing providers
|
|
final ollamaServiceProvider = Provider<OllamaService>((ref) {
|
|
return OllamaService();
|
|
});
|