# deepset-cloud-sdk

> Inoffficial for Deepset Cloud SDK

Latest version **0.9.1** (published 2023-05-23) · 0 weekly downloads

## Install

```sh
npm install deepset-cloud-sdk
pnpm add deepset-cloud-sdk
yarn add deepset-cloud-sdk
bun add deepset-cloud-sdk
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.9.1 |
| Published | 2023-05-23 |
| First published | 2023-05-23 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=14.16 |
| Dependencies | 7 |
| Unpacked size | 10.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Simon  / Fakir.tech |
| Maintainers | sfakir |
| Keywords | deepset, cloud, nlp, sdk |

## Links

- npm: https://www.npmjs.com/package/deepset-cloud-sdk
- Repository: https://github.com/fakir-tech/deepset-cloud-sdk
- Homepage: hhttps://github.com/fakir-tech/deepset-cloud-sdk#readme
- Issues: https://github.com/fakir-tech/deepset-cloud-sdk/issues
- npm.io page: https://npm.io/package/deepset-cloud-sdk

## Dependencies (7)

- [axios](https://npm.io/package/axios.md) ^1.3.2
- [lodash](https://npm.io/package/lodash.md) ^4.17.21
- [p-limit](https://npm.io/package/p-limit.md) ^4.0.0
- [form-data](https://npm.io/package/form-data.md) ^4.0.0
- [@types/axios](https://npm.io/package/@types/axios.md) ^0.14.0
- [@types/lodash](https://npm.io/package/@types/lodash.md) ^4.14.191
- [standard-version](https://npm.io/package/standard-version.md) ^9.5.0

## Recent versions

- 0.9.1 (latest) — 2023-05-23
- 0.9.0 — 2023-05-23

## README

# Deepset Cloud Client SDK

This is an inofficial [deepset](https://www.deepset.ai) cloud client provided by [Fakir Technology Consultants GmbH](https://www.fakir.tech).

If you have any questions or feedback, feel free to open an issue or contact us at info@fakir.tech

## Features

**File Upload Handling**

* Throttling of requests
* Retry on failed uploads
* Data Deduplications (using unique meta fields)


## Quick Examples

```javascript
import { initialize } from 'deepet-cloud-sdk';

const deepsetCloudClient = initialize({apiKey: '...' });


await deepsetCloudClient.storeFile({
    fileContent: "I am Albet Einestein",
    fileName: "einstein.txt"
})

const { results } = await deepsetCloudClient.search( {   
            pipeline:"germanBert", 
            query:"Who ist Albert Einstein"
        })


for (let answer of results[0]) {
    console.log(answer.text); //
}
```

---
_Source: https://npm.io/package/deepset-cloud-sdk · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
