Files
apidash/packages/genai/lib/genai.dart
Ankit Mahato 72fea1ba65 Refactor genai package to new modular interface
Reorganized the genai package by removing legacy LLM-related files and introducing a new modular interface under the 'interface' directory. Added provider-specific model classes, centralized constants, and updated the example to use the new API and data structures. Updated exports in genai.dart and improved dependency management.
2025-08-27 02:08:36 +05:30

5 lines
122 B
Dart

export 'models/models.dart';
export 'interface/interface.dart';
export 'utils/utils.dart';
export 'widgets/widgets.dart';