Skip to content

Commit 80d12a6

Browse files
authored
Merge pull request #9 from EvanZhouDev/v2
✨ Gemini AI v2
2 parents 680e4d5 + 6c9a839 commit 80d12a6

19 files changed

+1149
-750
lines changed

.github/CONTRIBUTING.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Contributing
2+
3+
Thank you for taking the time to contribute!
4+
5+
## Techstack
6+
7+
Gemini AI is built with the following tools. Ensure you have `bun` [installed](https://bun.sh/).
8+
9+
- [**Bun**](https://bun.sh/) as the package manager
10+
- [**Biome**](https://biomejs.dev/) as the linter and formatter
11+
- [**tsup**](https://tsup.egoist.dev/) as the build tool
12+
13+
Follow the [Github flow](https://docs.github.com/en/get-started/using-github/github-flow) to clone the repo and create a branch.
14+
15+
It is recommended to install Biome integration with your IDE to format your code.
16+
17+
## Scripts
18+
19+
### `bun run build`
20+
21+
Use this to build your project, should you need to test it locally.
22+
23+
It uses `tsup` under the hood.
24+
25+
### `bun run test`
26+
27+
Use this to test your project with existing unit tests. These tests will also be ran on your PR, so ensure they are passing!
28+
29+
It uses `vitest` under the hood.
30+
31+
You can also use `bun run coverage` to check coverage of your tests.
32+
33+
### `bun run check`
34+
35+
Use this to check if your code follows our formatting standards.
36+
37+
It uses Biome under the hood.

.github/README.md

+238-92
Large diffs are not rendered by default.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/node_modules
22
.DS_Store
3-
/coverage
3+
/coverage
4+
/dist

.npmignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
/coverage
33
/.github
44
/test
5-
/bun.lockb
5+
/bun.lockb
6+
/src
7+
tsconfig.json
8+
tsup.config.ts
9+
biome.json

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<img alt="" src="https://img.shields.io/npm/v/gemini-ai.svg?label=NPM&logo=npm&style=for-the-badge&color=0470FF&logoColor=white">
66
</a>
77
<a aria-label="NPM Download Count" href="https://www.npmjs.com/package/gemini-ai">
8-
<img alt="" src="https://img.shields.io/npm/dt/gemini-ai?label=Downloads&style=for-the-badge&color=67ACF3">
8+
<img alt="" src="https://img.shields.io/npm/dt/gemini-ai?label=Downloads&style=for-the-badge&color=27B2FF">
99
</a>
10-
<a aria-label="palm-api Size" href="https://www.npmjs.com/package/gemini-ai">
11-
<img alt="" src="https://img.shields.io/bundlephobia/minzip/gemini-ai?style=for-the-badge&color=F9DBBC">
10+
<a aria-label="Gemini AI Size" href="https://www.npmjs.com/package/gemini-ai">
11+
<img alt="" src="https://img.shields.io/bundlephobia/minzip/gemini-ai?style=for-the-badge&color=B3CAFF">
1212
</a>
1313
</p>
1414
<p align="center">
@@ -17,7 +17,8 @@
1717

1818
## Quickstart
1919

20-
Make a text request (`gemini-pro`):
20+
21+
Make a text request:
2122

2223
```javascript
2324
import Gemini from "gemini-ai";
@@ -27,7 +28,7 @@ const gemini = new Gemini(API_KEY);
2728
console.log(await gemini.ask("Hi!"));
2829
```
2930

30-
Make a streaming text request (`gemini-pro`):
31+
Make a streaming text request:
3132

3233
```javascript
3334
import Gemini from "gemini-ai";
@@ -39,7 +40,7 @@ gemini.ask("Hi!", {
3940
});
4041
```
4142

42-
Chat with Gemini (`gemini-pro`):
43+
Chat with Gemini:
4344

4445
```javascript
4546
import Gemini from "gemini-ai";

assets/banner.png

608 KB
Loading

assets/[email protected]

-84
This file was deleted.

assets/[email protected]

-84
This file was deleted.

biome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
}
1111
},
1212
"files": {
13-
"ignore": ["coverage"]
13+
"ignore": ["coverage", "dist"]
1414
}
1515
}

bun.lockb

37.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)