Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Change Log

## UNRELEASED
## 2024-06-24 - Version 0.2.0

- Update OpenAI Embeddings model to support all allowed types of input [#6](https://github.com/hypermodeAI/models-as/pull/6)
- More updates for OpenAI Embeddings model [#7](https://github.com/hypermodeAI/models-as/pull/7)
- Add documentation comments for OpenAI Chat model [#8](https://github.com/hypermodeAI/models-as/pull/8)
- Add experimental classification and embeddings models [#9](https://github.com/hypermodeAI/models-as/pull/9)

## 2024-06-28 - Version 0.1.6
## 2024-06-18 - Version 0.1.6

- Interface changes and fixes

## 2024-06-28 - Version 0.1.5
## 2024-06-18 - Version 0.1.5

- Interface changes and fixes

## 2024-06-27 - Version 0.1.2
## 2024-06-17 - Version 0.1.2

- Initial Release
157 changes: 95 additions & 62 deletions src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hypermode/models-as",
"version": "0.1.6",
"version": "0.2.0",
"description": "Hypermode Model Interface Library for AssemblyScript",
"author": "Hypermode, Inc.",
"license": "MIT",
Expand All @@ -14,17 +14,17 @@
"lint:fix": "eslint --ext .ts --fix ."
},
"dependencies": {
"json-as": "^0.9.6"
"json-as": "^0.9.8"
},
"devDependencies": {
"@types/node": "^20.14.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"assemblyscript": "^0.27.27",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"assemblyscript": "^0.27.28",
"assemblyscript-prettier": "^3.0.1",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"typescript": "^5.4.5",
"typescript": "^5.5.2",
"visitor-as": "^0.11.4"
},
"overrides": {
Expand Down