{"files":{"SKILL.md":"---\nname: nlpcloud\ndescription: \"NLPCloud API skill. Use when working with NLPCloud for en_core_web_sm. Covers 5 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# NLPCloud\nAPI version: 1.0.0\n\n## Auth\nBearer bearer\n\n## Base URL\nNot specified.\n\n## Setup\n1. Set Authorization header with your Bearer token\n2. GET /v1/en_core_web_sm/version -- verify access\n3. POST /v1/en_core_web_sm/entities -- create first entities\n\n## Endpoints\n\n5 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### en_core_web_sm\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /v1/en_core_web_sm/entities | Read Entities |\n| POST | /v1/en_core_web_sm/dependencies | Read Dependencies |\n| POST | /v1/en_core_web_sm/sentence-dependencies | Read Sentence Dependencies |\n| GET | /v1/en_core_web_sm/version | Read Version |\n| GET | /v1/en_core_web_sm/ | Read Root |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"Create a entity?\" -> POST /v1/en_core_web_sm/entities\n- \"Create a dependency?\" -> POST /v1/en_core_web_sm/dependencies\n- \"Create a sentence-dependency?\" -> POST /v1/en_core_web_sm/sentence-dependencies\n- \"List all version?\" -> GET /v1/en_core_web_sm/version\n- \"List all en_core_web_sm?\" -> GET /v1/en_core_web_sm/\n- \"How to authenticate?\" -> See Auth section\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Create/update endpoints typically return the created/updated object\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get nlpcloud -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search nlpcloud\n```\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api NLPCloud\n@version 1.0.0\n@auth Bearer bearer\n@endpoints 5\n@toc en_core_web_sm(5)\n\n@endpoint POST /v1/en_core_web_sm/entities\n@desc Read Entities\n@required {text: str}\n@returns(200) {entities: [map]} # Successful Response\n@errors {422: Validation Error}\n\n@endpoint POST /v1/en_core_web_sm/dependencies\n@desc Read Dependencies\n@required {text: str}\n@returns(200) {words: [map], arcs: [map]} # Successful Response\n@errors {422: Validation Error}\n\n@endpoint POST /v1/en_core_web_sm/sentence-dependencies\n@desc Read Sentence Dependencies\n@required {text: str}\n@returns(200) {sentence_dependencies: [map]} # Successful Response\n@errors {422: Validation Error}\n\n@endpoint GET /v1/en_core_web_sm/version\n@desc Read Version\n@returns(200) {spacy: str} # Successful Response\n\n@endpoint GET /v1/en_core_web_sm/\n@desc Read Root\n@returns(200) Successful Response\n\n@end\n"}}