-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.yaml
More file actions
66 lines (60 loc) · 1.38 KB
/
package.yaml
File metadata and controls
66 lines (60 loc) · 1.38 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: ollama-haskell
version: 0.2.1.0
github: "tusharad/ollama-haskell"
license: MIT
author: "tushar"
maintainer: "tusharadhatrao@gmail.com"
copyright: "2024 tushar"
extra-source-files:
- README.md
- CHANGELOG.md
synopsis: Haskell client for ollama.
category: Web
description: Ollama client for Haskell
dependencies:
- aeson >= 2 && < 3
- base >= 4.7 && < 5
- base64-bytestring >= 1 && < 2
- bytestring >= 0.10 && < 0.13
- containers >= 0.6 && < 0.9
- directory >= 1 && < 1.4
- filepath >= 1 && < 1.6
- http-client >= 0.6 && < 0.8
- http-client-tls >= 0.2 && < 0.5
- http-types >= 0.7 && < 0.13
- mtl >= 2 && < 3
- stm >= 2 && < 3
- text >= 1 && < 3
- time >= 1 && < 2
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
default-extensions:
- ImportQualifiedPost
tests:
ollama-haskell-test:
main: Main.hs
source-dirs: test
default-extensions:
- ImportQualifiedPost
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aeson
- ollama-haskell
- scientific
- silently
- tasty >= 1.5
- tasty-hunit
- text