Skip to content

Commit

Permalink
0.5.0 extension url
Browse files Browse the repository at this point in the history
  • Loading branch information
pacoccino committed Feb 28, 2024
1 parent 095179b commit 31511e4
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 99 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

**Bring local inference into web apps !**

[Download extension](#) | [Supported apps](#supported-apps) | [Integration guide](#for-integrators)
[Download extension](https://chromewebstore.google.com/detail/lkfaajachdpegnlpikpdajccldcgfdde) | [Supported apps](#supported-apps) | [Integration guide](#for-integrators)

[![npm version](https://badge.fury.io/js/@ai-mask%2Fsdk.svg)](https://badge.fury.io/js/@ai-mask%2Fsdk)

Expand All @@ -20,7 +20,6 @@ See it as the [Metamask](https://metamask.io/) of AI.
[Try it !](https://pacoccino.github.io/ai-mask/)



[AI-Mask Demo.mp4](https://github.com/pacoccino/ai-mask/assets/1371207/f75e8b27-c91a-4bc6-bd14-8eae0d68050f)


Expand Down Expand Up @@ -129,7 +128,7 @@ pnpm build

- [X] Documentation
- [x] Deploy demo app
- [ ] Deploy extension
- [x] Deploy extension
- [ ] Match OpenAI SDK API / Provide ReadableStream from AIMasklient
- [ ] Proxy OpenAI-like API requests and store user keys
- [ ] Interrupts
Expand Down
11 changes: 11 additions & 0 deletions examples/demo-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @ai-mask/demo-app

## 0.5.0

### Minor Changes

- extension store url

### Patch Changes

- Updated dependencies
- @ai-mask/sdk@0.5.0

## 0.4.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions examples/demo-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ai-mask/demo-app",
"private": true,
"version": "0.4.1",
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
Expand All @@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"@ai-mask/sdk": "workspace:^",
"@ai-mask/sdk": "^0.5.0",
"clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
5 changes: 1 addition & 4 deletions examples/demo-app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,9 @@ export default function App() {
{task === 'translation' && <Translate />}
</>
}
{clientState === 'error' &&
<div className='text-red-500'>failed to connect, have you installed the extension ?</div>
}
{clientState === 'not-available' &&
<div className='bg-orange-100 border border-orange-400 rounded-md p-4'>
<p>😟 AI-Mask extension not found, have you <a href="#" target='_blank' className='underline'>installed it</a> ?</p>
<p>😟 AI-Mask extension not found, have you <a href="https://chromewebstore.google.com/detail/lkfaajachdpegnlpikpdajccldcgfdde" target='_blank' className='underline'>installed it</a> ?</p>
</div>
}
{clientState === 'loading' &&
Expand Down
6 changes: 6 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ai-mask/sdk

## 0.5.0

### Minor Changes

- extension store url

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Bring local inference into your app !**

[Download extension](#) | [Demo App](https://pacoccino.github.io/ai-mask/) | [Home Page](https://github.com/pacoccino/ai-mask/blob/main/packages/extension/icons/icon-128.png) | [Quick Start](#quick-start)
[Download extension](https://chromewebstore.google.com/detail/lkfaajachdpegnlpikpdajccldcgfdde) | [Demo App](https://pacoccino.github.io/ai-mask/) | [Home Page](https://github.com/pacoccino/ai-mask/blob/main/packages/extension/icons/icon-128.png) | [Quick Start](#quick-start)

[![npm version](https://badge.fury.io/js/@ai-mask%2Fsdk.svg)](https://badge.fury.io/js/@ai-mask%2Fsdk)

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ai-mask/sdk",
"version": "0.4.1",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pacoccino/ai-mask"
Expand Down
Loading

0 comments on commit 31511e4

Please sign in to comment.