-
Notifications
You must be signed in to change notification settings - Fork 13
/
pubspec.yaml
49 lines (43 loc) · 1.09 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: maid_llm
description: "maid_llm is a dart implementation of llama.cpp used by the mobile artificial intelligence distribution (maid)"
version: 1.0.1
homepage: "https://github.com/Mobile-Artificial-Intelligence/maid_llm"
environment:
sdk: '>=3.3.0 <4.0.0'
flutter: '>=3.3.0'
dependencies:
crypto: ^3.0.3
ffi: ^2.1.2
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.2
dev_dependencies:
ffigen: ^11.0.0
flutter_test:
sdk: flutter
flutter_lints: ^3.0.0
ffigen:
name: 'maid_llm'
description: 'llama.cpp binding'
output: 'lib/src/bindings.dart'
ignore-source-errors: true
headers:
entry-points:
- 'src/maid_llm.h'
- 'src/llama_cpp/llama.h'
compiler-opts:
- '-I/usr/lib/clang/17/include'
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
plugin:
platforms:
android:
ffiPlugin: true
linux:
ffiPlugin: true
windows:
ffiPlugin: true
macos:
ffiPlugin: true