Skip to content

Commit

Permalink
chore: ready for 1.0.4 released
Browse files Browse the repository at this point in the history
  • Loading branch information
limcheekin committed Feb 9, 2024
1 parent 81b2a96 commit b177d7b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.4] - 2024-02-09

- feat: Added dimensions to request parameter of the embeddings endpoint.
- fix: Changed langchain imports to langchain_community.
- fix: GZipRequestMiddleware caused request error in fastapi 0.109.2.
- doc: Updated readme for download model step and fix open-in-colab badge.

## [1.0.3] - 2023-11-13

- [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.
Expand Down
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- [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.
- Normalize embeddings enabled by default.
- Added `VERBOSE` environment variable to support verbose logging, disabled by default.
- Support `openai` package version >= 1.0.0.
- feat: Added dimensions to request parameter of the embeddings endpoint.
- fix: Changed langchain imports to langchain_community.
- fix: GZipRequestMiddleware caused request error in fastapi 0.109.2.
- doc: Updated readme for download model step and fix open-in-colab badge.
2 changes: 1 addition & 1 deletion open/text/embeddings/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def create_app():
initialize_embeddings()
app = FastAPI(
title="Open Text Embeddings API",
version="1.0.2",
version="1.0.4",
)
app.add_middleware(
CORSMiddleware,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description="Open Source Text Embedding Models with OpenAI API-Compatible Endpoint",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.0.3",
version="1.0.4",
author="Lim Chee Kin",
author_email="limcheekin@vobject.com",
license="MIT",
Expand Down

0 comments on commit b177d7b

Please sign in to comment.