Skip to content

Commit b177d7b

Browse files
committed
chore: ready for 1.0.4 released
1 parent 81b2a96 commit b177d7b

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.4] - 2024-02-09
11+
12+
- feat: Added dimensions to request parameter of the embeddings endpoint.
13+
- fix: Changed langchain imports to langchain_community.
14+
- fix: GZipRequestMiddleware caused request error in fastapi 0.109.2.
15+
- doc: Updated readme for download model step and fix open-in-colab badge.
16+
1017
## [1.0.3] - 2023-11-13
1118

1219
- [jayxuz](https://github.com/jayxuz) contributed [#5](https://github.com/limcheekin/open-text-embeddings/pull/5): improved OpenAI API compatibility, better support for previous versions of Python (start from v3.7), better defaults and bug fixes.

RELEASE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- [jayxuz](https://github.com/jayxuz) contributed [#5](https://github.com/limcheekin/open-text-embeddings/pull/5): improved OpenAI API compatibility, better support for previous versions of Python (start from v3.7), better defaults and bug fixes.
2-
- Normalize embeddings enabled by default.
3-
- Added `VERBOSE` environment variable to support verbose logging, disabled by default.
4-
- Support `openai` package version >= 1.0.0.
1+
- feat: Added dimensions to request parameter of the embeddings endpoint.
2+
- fix: Changed langchain imports to langchain_community.
3+
- fix: GZipRequestMiddleware caused request error in fastapi 0.109.2.
4+
- doc: Updated readme for download model step and fix open-in-colab badge.

open/text/embeddings/server/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def create_app():
2727
initialize_embeddings()
2828
app = FastAPI(
2929
title="Open Text Embeddings API",
30-
version="1.0.2",
30+
version="1.0.4",
3131
)
3232
app.add_middleware(
3333
CORSMiddleware,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
description="Open Source Text Embedding Models with OpenAI API-Compatible Endpoint",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
version="1.0.3",
14+
version="1.0.4",
1515
author="Lim Chee Kin",
1616
author_email="[email protected]",
1717
license="MIT",

0 commit comments

Comments
 (0)