Skip to content

Commit

Permalink
🔖 Release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zuisong committed Nov 25, 2024
1 parent 61adb8e commit bba7b23
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 25 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
# changelog

## 0.13.0 (Unreleased)
## 0.15.0 (Unreleased)

- ...

## 0.14.0 (2024-11-25)

- Add support for `gemini-*` model names. Now we can use `gemini-1.5-flash-8b-exp-0924`, `gemini-exp-1114`, `gemini-1.5-flash-8b`, etc.
- Add embedding endpoint support.

```
curl https://gemini-openai-proxy.deno.dev/v1/embeddings \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $YOUR_GEMINI_API_KEY" \
-d '{
"input": "Your text string goes here",
"model": "text-embedding-3-small"
}'
```

- Fix bugs (#83)

## 0.13.0 (2024-06-14)

- Support response format by @Quilljou in #51
- use streamGenerateContent api, truly support stream response by @zuisong in #55

## 0.12.0 (2024-05-16)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gemini-openai-proxy",
"private": true,
"version": "0.12.0",
"version": "0.14.0",
"author": "zuisong",
"homepage": "https://github.com/zuisong/gemini-openai-proxy",
"type": "module",
Expand Down

0 comments on commit bba7b23

Please sign in to comment.