| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 22:17:33 GMT
X-Served-By: cache-dfw-kdfw8210121-DFW, cache-bom-vanm7210093-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768688253.202025,VS0,VE774
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
luis-client: An unofficial client for the LUIS NLP service.
luis-client: An unofficial client for the LUIS NLP service.
Downloads
- luis-client-0.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.0.1, 0.0.2 |
|---|---|
| Dependencies | aeson (>=0.9.0.1 && <0.10), base (>=4.7 && <5), http-client (>=0.4.27 && <0.5), lens (>=4.13 && <4.14), text (>=1.2.2.1 && <1.3), vector (>=0.11.0.0 && <0.12), wreq (>=0.4.1.0 && <0.5) [details] |
| License | BSD-3-Clause |
| Copyright | (c) 2016 Micxjo Funkcio |
| Author | Micxjo Funkcio <micxjo@fastmail.com> |
| Maintainer | Micxjo Funkcio <micxjo@fastmail.com> |
| Uploaded | by MicxjoFunkcio at 2016-04-01T18:54:37Z |
| Category | Natural Language Processing, Web |
| Home page | https://github.com/micxjo/hs-luis-client |
| Source repo | head: git clone https://github.com/micxjo/hs-luis-client |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 1365 total (5 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2016-04-01 [all 1 reports] |
Readme for luis-client-0.0.2
[back to package description]hs-luis-client
An unofficial Haskell client for Microsoft's LUIS natural language processing API.
Examples
import Control.Lens
import NLP.LUIS
main = do
let creds = Credentials "Your-App-Id" "Your-Subscription-Key"
resp <- queryExc creds "show me news about greenland"
resp ^? responseIntents . ix 0 . intentType -- Just "FindNews"
resp ^? responseEntities . ix 0 . entityText -- Just "greenland"