sambanova 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,6 +8,13 @@ A JavaScript/TypeScript client for the Sambanova AI API. This package provides a
8
8
  npm install sambanova
9
9
  ```
10
10
 
11
+ ## Connect with Me
12
+
13
+ - **GitHub:** [github.com/sumionochi](https://github.com/sumionochi/NPM-client-for-Sambanova-AI-API)
14
+ - **LinkedIn:** [aaditya-srivastava-connect](https://www.linkedin.com/in/aaditya-srivastava-connect/)
15
+ - **Instagram:** [mito.wins.uncensored](https://www.instagram.com/mito.wins.uncensored/)
16
+ - **Twitter (X):** [sumionochi](https://x.com/sumionochi)
17
+
11
18
  ## Quick Start
12
19
 
13
20
  ```javascript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sambanova",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "TypeScript/Javascript client for Sambanova AI API with comprehensive model support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/tsconfig.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "target": "es2018",
4
4
  "module": "commonjs",
5
5
  "declaration": true,
6
- "outDir": "./dist",
6
+ "outDir": "dist",
7
7
  "strict": true,
8
8
  "esModuleInterop": true,
9
9
  "skipLibCheck": true,
@@ -1,13 +0,0 @@
1
- name: CI
2
- on: [push, pull_request]
3
- jobs:
4
- build:
5
- runs-on: ubuntu-latest
6
- steps:
7
- - uses: actions/checkout@v2
8
- - uses: actions/setup-node@v2
9
- with:
10
- node-version: '16'
11
- - run: npm ci
12
- - run: npm test
13
- - run: npm run build