Skip to content

Commit

Permalink
[Version] Bump version to 0.2.27 (#334)
Browse files Browse the repository at this point in the history
Changes in WebLLM:
- Stateful chat completion: #330
- OpenAI's `logit_bias`: #331
- OpenAI's `logprobs` and `top_logprobs`:
#333

Changes in TVMjs:
- apache/tvm#16650
- Fix param download issues (already reflected in 0.2.26, but at the
time this PR was not merged yet)
  - Expose `sampleTopPFromProb` to support `logprobs` (new in 0.2.27)
  • Loading branch information
CharlieFRuan committed Mar 14, 2024
1 parent 6d665b9 commit a368eb6
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"url": "^0.11.1"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26",
"@mlc-ai/web-llm": "^0.2.27",
"progressbar.js": "^1.1.0"
}
}
2 changes: 1 addition & 1 deletion examples/chrome-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"url": "^0.11.1"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26",
"@mlc-ai/web-llm": "^0.2.27",
"progressbar.js": "^1.1.0"
}
}
2 changes: 1 addition & 1 deletion examples/get-started-rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"typescript": "^4.9.5"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26"
"@mlc-ai/web-llm": "^0.2.27"
}
}
2 changes: 1 addition & 1 deletion examples/get-started/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"typescript": "^4.9.5"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26"
"@mlc-ai/web-llm": "^0.2.27"
}
}
2 changes: 1 addition & 1 deletion examples/logit-processor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"url": "^0.11.3"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26"
"@mlc-ai/web-llm": "^0.2.27"
}
}
2 changes: 1 addition & 1 deletion examples/openai-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"url": "^0.11.3"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26"
"@mlc-ai/web-llm": "^0.2.27"
}
}
2 changes: 1 addition & 1 deletion examples/simple-chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"url": "^0.11.3"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26"
"@mlc-ai/web-llm": "^0.2.27"
}
}
2 changes: 1 addition & 1 deletion examples/web-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"typescript": "^4.9.5"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26"
"@mlc-ai/web-llm": "^0.2.27"
}
}
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mlc-ai/web-llm",
"version": "0.2.26",
"version": "0.2.27",
"description": "Hardware accelerated language model chats on browsers",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion utils/vram_requirements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"url": "^0.11.3"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.26",
"@mlc-ai/web-llm": "^0.2.27",
"tvmjs": "file:./../../tvm_home/web"
}
}

0 comments on commit a368eb6

Please sign in to comment.