-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 1.33 KB
/
composer.json
File metadata and controls
30 lines (30 loc) · 1.33 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
{
"name": "nlpcloud/nlpcloud-client",
"description": "NLP Cloud serves high performance pre-trained or custom models for NER, sentiment-analysis, classification, summarization, paraphrasing, grammar and spelling correction, keywords and keyphrases extraction, chatbot, product description and ad generation, intent classification, text generation, image generation, code generation, question answering, automatic speech recognition, machine translation, language detection, semantic search, semantic similarity, tokenization, POS tagging, speech synthesis, embeddings, and dependency parsing. It is ready for production, served through a REST API. This is the PHP client for the API. More details here: https://nlpcloud.com. Documentation: https://docs.nlpcloud.com. Github: https://github.com/nlpcloud/nlpcloud-php",
"homepage": "http://github.com/nlpcloud/nlpcloud-php",
"license": "MIT",
"keywords": [
"api",
"NLP",
"ai",
"deep learning",
"machine learning",
"data science",
"nlpcloud"
],
"authors": [
{
"name": "Julien Salinas",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NLPCloud\\": "src/"
}
},
"require": {
"php": ">=7.2",
"nategood/httpful": "*"
}
}