Merge branch 'dev' into more-groq-models
This commit is contained in:
commit
f7ce83aba4
47
.github/scripts/rename-app-beta.sh
vendored
Normal file
47
.github/scripts/rename-app-beta.sh
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Check if the correct number of arguments is provided
|
||||||
|
if [ "$#" -ne 1 ]; then
|
||||||
|
echo "Usage: $0 <path_to_json_input_file>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
INPUT_JSON_FILE="$1"
|
||||||
|
|
||||||
|
# Check if the input file exists
|
||||||
|
if [ ! -f "$INPUT_JSON_FILE" ]; then
|
||||||
|
echo "Input file not found: $INPUT_JSON_FILE"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Use jq to transform the content
|
||||||
|
jq '
|
||||||
|
.name = "jan-beta" |
|
||||||
|
.productName = "Jan-beta" |
|
||||||
|
.build.appId = "jan-beta.ai.app" |
|
||||||
|
.build.productName = "Jan-beta" |
|
||||||
|
.build.appId = "jan-beta.ai.app" |
|
||||||
|
.build.protocols[0].name = "Jan-beta" |
|
||||||
|
.build.protocols[0].schemes = ["jan-beta"] |
|
||||||
|
.build.artifactName = "jan-beta-${os}-${arch}-${version}.${ext}" |
|
||||||
|
.build.publish[0].channel = "beta"
|
||||||
|
' "$INPUT_JSON_FILE" > ./package.json.tmp
|
||||||
|
|
||||||
|
cat ./package.json.tmp
|
||||||
|
|
||||||
|
rm $INPUT_JSON_FILE
|
||||||
|
mv ./package.json.tmp $INPUT_JSON_FILE
|
||||||
|
|
||||||
|
# Update the layout file
|
||||||
|
LAYOUT_FILE_PATH="web/app/layout.tsx"
|
||||||
|
|
||||||
|
if [ ! -f "$LAYOUT_FILE_PATH" ]; then
|
||||||
|
echo "File does not exist: $LAYOUT_FILE_PATH"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Perform the replacements
|
||||||
|
sed -i -e "s#Jan#Jan-beta#g" "$LAYOUT_FILE_PATH"
|
||||||
|
|
||||||
|
# Notify completion
|
||||||
|
echo "File has been updated: $LAYOUT_FILE_PATH"
|
||||||
16
.github/scripts/rename-uninstaller-beta.sh
vendored
Normal file
16
.github/scripts/rename-uninstaller-beta.sh
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# File path to be modified
|
||||||
|
FILE_PATH="electron/scripts/uninstaller.nsh"
|
||||||
|
|
||||||
|
# Check if the file exists
|
||||||
|
if [ ! -f "$FILE_PATH" ]; then
|
||||||
|
echo "File does not exist: $FILE_PATH"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Perform the replacements
|
||||||
|
sed -i -e "s#jan#jan-beta#g" "$FILE_PATH"
|
||||||
|
|
||||||
|
# Notify completion
|
||||||
|
echo "File has been updated: $FILE_PATH"
|
||||||
16
.github/scripts/rename-workspace-beta.sh
vendored
Normal file
16
.github/scripts/rename-workspace-beta.sh
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# File path to be modified
|
||||||
|
FILE_PATH="$1"
|
||||||
|
|
||||||
|
# Check if the file exists
|
||||||
|
if [ ! -f "$FILE_PATH" ]; then
|
||||||
|
echo "File does not exist: $FILE_PATH"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Perform the replacements
|
||||||
|
sed -i -e 's/yarn workspace jan/yarn workspace jan-beta/g' "$FILE_PATH"
|
||||||
|
|
||||||
|
# Notify completion
|
||||||
|
echo "File has been updated: $FILE_PATH"
|
||||||
2
.github/workflows/jan-docs.yml
vendored
2
.github/workflows/jan-docs.yml
vendored
@ -83,6 +83,6 @@ jobs:
|
|||||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
projectName: ${{ env.CLOUDFLARE_PROJECT_NAME }}
|
projectName: ${{ env.CLOUDFLARE_PROJECT_NAME }}
|
||||||
directory: ./docs/out
|
directory: ./docs/out
|
||||||
branch: dev
|
branch: main
|
||||||
# Optional: Enable this if you want to have GitHub Deployments triggered
|
# Optional: Enable this if you want to have GitHub Deployments triggered
|
||||||
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
136
.github/workflows/jan-electron-build-beta.yml
vendored
Normal file
136
.github/workflows/jan-electron-build-beta.yml
vendored
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
name: Electron Builder - Beta Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags: ["v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+-beta"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# Job create Update app version based on latest release tag with build number and save to output
|
||||||
|
get-update-version:
|
||||||
|
uses: ./.github/workflows/template-get-update-version.yml
|
||||||
|
|
||||||
|
create-draft-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
outputs:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
version: ${{ steps.get_version.outputs.version }}
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- name: Extract tag name without v prefix
|
||||||
|
id: get_version
|
||||||
|
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV && echo "::set-output name=version::${GITHUB_REF#refs/tags/v}"
|
||||||
|
env:
|
||||||
|
GITHUB_REF: ${{ github.ref }}
|
||||||
|
- name: Create Draft Release
|
||||||
|
id: create_release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref_name }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
name: "${{ env.VERSION }}"
|
||||||
|
draft: true
|
||||||
|
prerelease: false
|
||||||
|
generate_release_notes: true
|
||||||
|
|
||||||
|
build-macos-x64:
|
||||||
|
uses: ./.github/workflows/template-build-macos-x64.yml
|
||||||
|
secrets: inherit
|
||||||
|
needs: [get-update-version]
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
public_provider: github
|
||||||
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
||||||
|
beta: true
|
||||||
|
|
||||||
|
build-macos-arm64:
|
||||||
|
uses: ./.github/workflows/template-build-macos-arm64.yml
|
||||||
|
secrets: inherit
|
||||||
|
needs: [get-update-version]
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
public_provider: github
|
||||||
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
||||||
|
beta: true
|
||||||
|
|
||||||
|
build-windows-x64:
|
||||||
|
uses: ./.github/workflows/template-build-windows-x64.yml
|
||||||
|
secrets: inherit
|
||||||
|
needs: [get-update-version]
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
public_provider: github
|
||||||
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
||||||
|
beta: true
|
||||||
|
|
||||||
|
build-linux-x64:
|
||||||
|
uses: ./.github/workflows/template-build-linux-x64.yml
|
||||||
|
secrets: inherit
|
||||||
|
needs: [get-update-version]
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
public_provider: github
|
||||||
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
||||||
|
beta: true
|
||||||
|
|
||||||
|
combine-beta-mac-yml:
|
||||||
|
needs: [build-macos-x64, build-macos-arm64, create-draft-release, build-windows-x64, build-linux-x64]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- name: Getting the repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Download mac-x64 artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: beta-mac-x64
|
||||||
|
path: ./beta-mac-x64
|
||||||
|
- name: Download mac-arm artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: beta-mac-arm64
|
||||||
|
path: ./beta-mac-arm64
|
||||||
|
|
||||||
|
- name: 'Merge beta-mac.yml'
|
||||||
|
# unfortunately electron-builder doesn't understand that we have two different releases for mac-x64 and mac-arm, so we need to manually merge the latest files
|
||||||
|
# see https://github.com/electron-userland/electron-builder/issues/5592
|
||||||
|
run: |
|
||||||
|
ls -la .
|
||||||
|
ls -la ./beta-mac-x64
|
||||||
|
ls -la ./beta-mac-arm64
|
||||||
|
ls -la ./electron
|
||||||
|
cp ./electron/merge-latest-ymls.js /tmp/merge-beta-ymls.js
|
||||||
|
npm install js-yaml --prefix /tmp
|
||||||
|
node /tmp/merge-beta-ymls.js ./beta-mac-x64/beta-mac.yml ./beta-mac-arm64/beta-mac.yml ./beta-mac.yml
|
||||||
|
cat ./beta-mac.yml
|
||||||
|
|
||||||
|
- name: Yet Another Upload Release Asset Action
|
||||||
|
uses: shogo82148/actions-upload-release-asset@v1.7.2
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ needs.create-draft-release.outputs.upload_url }}
|
||||||
|
asset_path: ./beta-mac.yml
|
||||||
|
asset_name: beta-mac.yml
|
||||||
|
asset_content_type: text/yaml
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
|
- name: Upload beta-mac.yml
|
||||||
|
run: |
|
||||||
|
aws s3 cp ./beta-mac.yml "s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/temp-beta/beta-mac.yml"
|
||||||
|
# sync temp-beta to beta by copy files that are different or new
|
||||||
|
aws s3 sync "s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/temp-beta/" "s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/beta/"
|
||||||
|
env:
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
|
AWS_DEFAULT_REGION: ${{ secrets.DELTA_AWS_REGION }}
|
||||||
|
AWS_EC2_METADATA_DISABLED: "true"
|
||||||
|
|
||||||
|
- name: set release to prerelease
|
||||||
|
run: |
|
||||||
|
gh release edit v${{ needs.create-draft-release.outputs.version }} --draft=false --prerelease
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -80,7 +80,7 @@ jobs:
|
|||||||
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
new_version: ${{ needs.get-update-version.outputs.new_version }}
|
||||||
|
|
||||||
combine-latest-mac-yml:
|
combine-latest-mac-yml:
|
||||||
needs: [set-public-provider, build-macos-x64, build-macos-arm64]
|
needs: [set-public-provider, build-macos-x64, build-macos-arm64, build-windows-x64, build-linux-x64]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
@ -114,7 +114,8 @@ jobs:
|
|||||||
- name: Upload latest-mac.yml
|
- name: Upload latest-mac.yml
|
||||||
if: ${{ needs.set-public-provider.outputs.public_provider == 'aws-s3' }}
|
if: ${{ needs.set-public-provider.outputs.public_provider == 'aws-s3' }}
|
||||||
run: |
|
run: |
|
||||||
aws s3 cp ./latest-mac.yml "s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/latest/latest-mac.yml"
|
aws s3 cp ./latest-mac.yml "s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/temp-latest/latest-mac.yml"
|
||||||
|
aws s3 sync s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/temp-latest/ s3://${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}/latest/
|
||||||
env:
|
env:
|
||||||
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|||||||
171
.github/workflows/jan-electron-linter-and-test.yml
vendored
171
.github/workflows/jan-electron-linter-and-test.yml
vendored
@ -66,11 +66,7 @@ jobs:
|
|||||||
|
|
||||||
test-on-macos:
|
test-on-macos:
|
||||||
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||||
runs-on: ${{ matrix.runs-on }}
|
runs-on: [self-hosted, macOS, macos-desktop]
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
runs-on: ['macos-latest', 'macos-13']
|
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -82,19 +78,40 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
rm -rf ~/jan
|
||||||
|
make clean
|
||||||
|
|
||||||
|
- name: Get Commit Message for PR
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
run: |
|
||||||
|
echo "REPORT_PORTAL_DESCRIPTION=${{github.event.after}})" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Get Commit Message for push event
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
run: |
|
||||||
|
echo "REPORT_PORTAL_DESCRIPTION=${{github.sha}})" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: 'Config report portal'
|
||||||
|
run: |
|
||||||
|
make update-playwright-config REPORT_PORTAL_URL=${{ secrets.REPORT_PORTAL_URL }} REPORT_PORTAL_API_KEY=${{ secrets.REPORT_PORTAL_API_KEY }} REPORT_PORTAL_PROJECT_NAME=${{ secrets.REPORT_PORTAL_PROJECT_NAME }} REPORT_PORTAL_LAUNCH_NAME="Jan App macos" REPORT_PORTAL_DESCRIPTION="${{env.REPORT_PORTAL_DESCRIPTION}}"
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
run: |
|
run: |
|
||||||
|
npm config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
|
yarn config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
make test
|
make test
|
||||||
env:
|
env:
|
||||||
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
||||||
|
# TURBO_API: '${{ secrets.TURBO_API }}'
|
||||||
|
# TURBO_TEAM: 'macos'
|
||||||
|
# TURBO_TOKEN: '${{ secrets.TURBO_TOKEN }}'
|
||||||
|
|
||||||
test-on-macos-pr-target:
|
test-on-macos-pr-target:
|
||||||
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
|
||||||
runs-on: ${{ matrix.runs-on }}
|
runs-on: [self-hosted, macOS, macos-desktop]
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
runs-on: ['macos-latest', 'macos-13']
|
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -106,8 +123,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
rm -rf ~/jan
|
||||||
|
make clean
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
run: |
|
run: |
|
||||||
|
npm config set registry https://registry.npmjs.org --global
|
||||||
|
yarn config set registry https://registry.npmjs.org --global
|
||||||
make test
|
make test
|
||||||
env:
|
env:
|
||||||
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
CSC_IDENTITY_AUTO_DISCOVERY: 'false'
|
||||||
@ -143,16 +168,30 @@ jobs:
|
|||||||
}
|
}
|
||||||
make clean
|
make clean
|
||||||
|
|
||||||
|
- name: Get Commit Message for push event
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "REPORT_PORTAL_DESCRIPTION=${{github.sha}}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: 'Config report portal'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
make update-playwright-config REPORT_PORTAL_URL=${{ secrets.REPORT_PORTAL_URL }} REPORT_PORTAL_API_KEY=${{ secrets.REPORT_PORTAL_API_KEY }} REPORT_PORTAL_PROJECT_NAME=${{ secrets.REPORT_PORTAL_PROJECT_NAME }} REPORT_PORTAL_LAUNCH_NAME="Jan App Windows ${{ matrix.antivirus-tools }}" REPORT_PORTAL_DESCRIPTION="${{env.REPORT_PORTAL_DESCRIPTION}}"
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
npm config set registry ${{ secrets.NPM_PROXY }} --global
|
npm config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
yarn config set registry ${{ secrets.NPM_PROXY }} --global
|
yarn config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
make test
|
make test
|
||||||
|
# env:
|
||||||
|
# TURBO_API: '${{ secrets.TURBO_API }}'
|
||||||
|
# TURBO_TEAM: 'windows'
|
||||||
|
# TURBO_TOKEN: '${{ secrets.TURBO_TOKEN }}'
|
||||||
test-on-windows-pr:
|
test-on-windows-pr:
|
||||||
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository)
|
||||||
runs-on: windows-latest
|
runs-on: windows-desktop-default-windows-security
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -164,14 +203,44 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
# Clean cache, continue on error
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
shell: powershell
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
$path = "$Env:APPDATA\jan"
|
||||||
|
if (Test-Path $path) {
|
||||||
|
Remove-Item "\\?\$path" -Recurse -Force
|
||||||
|
} else {
|
||||||
|
Write-Output "Folder does not exist."
|
||||||
|
}
|
||||||
|
make clean
|
||||||
|
|
||||||
|
- name: Get Commit Message for PR
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "REPORT_PORTAL_DESCRIPTION=${{github.event.after}}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: 'Config report portal'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
make update-playwright-config REPORT_PORTAL_URL=${{ secrets.REPORT_PORTAL_URL }} REPORT_PORTAL_API_KEY=${{ secrets.REPORT_PORTAL_API_KEY }} REPORT_PORTAL_PROJECT_NAME=${{ secrets.REPORT_PORTAL_PROJECT_NAME }} REPORT_PORTAL_LAUNCH_NAME="Jan App Windows" REPORT_PORTAL_DESCRIPTION="${{env.REPORT_PORTAL_DESCRIPTION}}"
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
|
npm config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
|
yarn config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
make test
|
make test
|
||||||
|
# env:
|
||||||
|
# TURBO_API: '${{ secrets.TURBO_API }}'
|
||||||
|
# TURBO_TEAM: 'windows'
|
||||||
|
# TURBO_TOKEN: '${{ secrets.TURBO_TOKEN }}'
|
||||||
|
|
||||||
test-on-windows-pr-target:
|
test-on-windows-pr-target:
|
||||||
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
|
||||||
runs-on: windows-latest
|
runs-on: windows-desktop-default-windows-security
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -183,13 +252,28 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
# Clean cache, continue on error
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
shell: powershell
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
$path = "$Env:APPDATA\jan"
|
||||||
|
if (Test-Path $path) {
|
||||||
|
Remove-Item "\\?\$path" -Recurse -Force
|
||||||
|
} else {
|
||||||
|
Write-Output "Folder does not exist."
|
||||||
|
}
|
||||||
|
make clean
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
shell: powershell
|
shell: powershell
|
||||||
run: |
|
run: |
|
||||||
|
npm config set registry https://registry.npmjs.org --global
|
||||||
|
yarn config set registry https://registry.npmjs.org --global
|
||||||
make test
|
make test
|
||||||
|
|
||||||
test-on-ubuntu:
|
test-on-ubuntu:
|
||||||
runs-on: ubuntu-latest
|
runs-on: [self-hosted, Linux, ubuntu-desktop]
|
||||||
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
@ -202,12 +286,41 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
rm -rf ~/jan
|
||||||
|
make clean
|
||||||
|
|
||||||
|
- name: Get Commit Message for PR
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
run: |
|
||||||
|
echo "REPORT_PORTAL_DESCRIPTION=${{github.event.after}}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Get Commit Message for push event
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
run: |
|
||||||
|
echo "REPORT_PORTAL_DESCRIPTION=${{github.sha}}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: 'Config report portal'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
make update-playwright-config REPORT_PORTAL_URL=${{ secrets.REPORT_PORTAL_URL }} REPORT_PORTAL_API_KEY=${{ secrets.REPORT_PORTAL_API_KEY }} REPORT_PORTAL_PROJECT_NAME=${{ secrets.REPORT_PORTAL_PROJECT_NAME }} REPORT_PORTAL_LAUNCH_NAME="Jan App Linux" REPORT_PORTAL_DESCRIPTION="${{env.REPORT_PORTAL_DESCRIPTION}}"
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
run: |
|
run: |
|
||||||
|
export DISPLAY=$(w -h | awk 'NR==1 {print $2}')
|
||||||
|
echo -e "Display ID: $DISPLAY"
|
||||||
|
npm config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
|
yarn config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
make test
|
make test
|
||||||
|
# env:
|
||||||
|
# TURBO_API: '${{ secrets.TURBO_API }}'
|
||||||
|
# TURBO_TEAM: 'linux'
|
||||||
|
# TURBO_TOKEN: '${{ secrets.TURBO_TOKEN }}'
|
||||||
|
|
||||||
coverage-check:
|
coverage-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: [self-hosted, Linux, ubuntu-desktop]
|
||||||
needs: base_branch_cov
|
needs: base_branch_cov
|
||||||
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||||
steps:
|
steps:
|
||||||
@ -221,6 +334,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
rm -rf ~/jan
|
||||||
|
make clean
|
||||||
|
|
||||||
- name: Download code coverage report from base branch
|
- name: Download code coverage report from base branch
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
@ -228,9 +347,17 @@ jobs:
|
|||||||
|
|
||||||
- name: Linter and test coverage
|
- name: Linter and test coverage
|
||||||
run: |
|
run: |
|
||||||
|
export DISPLAY=$(w -h | awk 'NR==1 {print $2}')
|
||||||
|
echo -e "Display ID: $DISPLAY"
|
||||||
|
npm config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
|
yarn config set registry ${{ secrets.NPM_PROXY }} --global
|
||||||
make lint
|
make lint
|
||||||
yarn build:test
|
yarn build:test
|
||||||
yarn test:coverage
|
yarn test:coverage
|
||||||
|
# env:
|
||||||
|
# TURBO_API: '${{ secrets.TURBO_API }}'
|
||||||
|
# TURBO_TEAM: 'linux'
|
||||||
|
# TURBO_TOKEN: '${{ secrets.TURBO_TOKEN }}'
|
||||||
|
|
||||||
- name: Generate Code Coverage report
|
- name: Generate Code Coverage report
|
||||||
id: code-coverage
|
id: code-coverage
|
||||||
@ -243,7 +370,7 @@ jobs:
|
|||||||
show-annotations: 'warning'
|
show-annotations: 'warning'
|
||||||
|
|
||||||
test-on-ubuntu-pr-target:
|
test-on-ubuntu-pr-target:
|
||||||
runs-on: ubuntu-latest
|
runs-on: [self-hosted, Linux, ubuntu-desktop]
|
||||||
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
|
||||||
steps:
|
steps:
|
||||||
- name: Getting the repo
|
- name: Getting the repo
|
||||||
@ -256,6 +383,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
|
- name: 'Cleanup cache'
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
rm -rf ~/jan
|
||||||
|
make clean
|
||||||
|
|
||||||
- name: Linter and test
|
- name: Linter and test
|
||||||
run: |
|
run: |
|
||||||
|
export DISPLAY=$(w -h | awk 'NR==1 {print $2}')
|
||||||
|
echo -e "Display ID: $DISPLAY"
|
||||||
|
npm config set registry https://registry.npmjs.org --global
|
||||||
|
yarn config set registry https://registry.npmjs.org --global
|
||||||
make test
|
make test
|
||||||
|
|||||||
39
.github/workflows/template-build-linux-x64.yml
vendored
39
.github/workflows/template-build-linux-x64.yml
vendored
@ -19,6 +19,10 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: '/latest/'
|
default: '/latest/'
|
||||||
|
beta:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
secrets:
|
secrets:
|
||||||
DELTA_AWS_S3_BUCKET_NAME:
|
DELTA_AWS_S3_BUCKET_NAME:
|
||||||
required: false
|
required: false
|
||||||
@ -56,17 +60,29 @@ jobs:
|
|||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json web/package.json
|
mv /tmp/package.json web/package.json
|
||||||
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "${{ inputs.aws_s3_prefix }}", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-latest", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
||||||
|
mv /tmp/package.json electron/package.json
|
||||||
|
cat electron/package.json
|
||||||
|
|
||||||
|
- name: Change App Name for beta version
|
||||||
|
if: inputs.beta == true
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
chmod +x .github/scripts/rename-app-beta.sh
|
||||||
|
.github/scripts/rename-app-beta.sh ./electron/package.json
|
||||||
|
chmod +x .github/scripts/rename-workspace-beta.sh
|
||||||
|
.github/scripts/rename-workspace-beta.sh ./package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./electron/package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./package.json
|
||||||
|
jq '.build.publish = [{"provider": "generic", "url": "https://delta.jan.ai/beta", "channel": "beta"}, {"provider": "github", "owner": "janhq", "repo": "jan", "channel": "beta"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-beta", "channel": "beta"}]' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
cat electron/package.json
|
cat electron/package.json
|
||||||
|
|
||||||
- name: Update app version base on tag
|
- name: Update app version base on tag
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
||||||
run: |
|
run: |
|
||||||
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
||||||
echo "Error: Tag is not valid!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
@ -92,7 +108,7 @@ jobs:
|
|||||||
AWS_MAX_ATTEMPTS: "5"
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Build and publish app to github
|
- name: Build and publish app to github
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == false
|
||||||
run: |
|
run: |
|
||||||
make build-and-publish
|
make build-and-publish
|
||||||
env:
|
env:
|
||||||
@ -100,6 +116,17 @@ jobs:
|
|||||||
ANALYTICS_ID: ${{ secrets.JAN_APP_UMAMI_PROJECT_API_KEY }}
|
ANALYTICS_ID: ${{ secrets.JAN_APP_UMAMI_PROJECT_API_KEY }}
|
||||||
ANALYTICS_HOST: ${{ secrets.JAN_APP_UMAMI_URL }}
|
ANALYTICS_HOST: ${{ secrets.JAN_APP_UMAMI_URL }}
|
||||||
|
|
||||||
|
- name: Build and publish app to github
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == true
|
||||||
|
run: |
|
||||||
|
make build-and-publish
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
|
AWS_EC2_METADATA_DISABLED: "true"
|
||||||
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Upload Artifact .deb file
|
- name: Upload Artifact .deb file
|
||||||
if: inputs.public_provider != 'github'
|
if: inputs.public_provider != 'github'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
55
.github/workflows/template-build-macos-arm64.yml
vendored
55
.github/workflows/template-build-macos-arm64.yml
vendored
@ -19,6 +19,10 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: '/latest/'
|
default: '/latest/'
|
||||||
|
beta:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
secrets:
|
secrets:
|
||||||
DELTA_AWS_S3_BUCKET_NAME:
|
DELTA_AWS_S3_BUCKET_NAME:
|
||||||
required: false
|
required: false
|
||||||
@ -68,7 +72,7 @@ jobs:
|
|||||||
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json web/package.json
|
mv /tmp/package.json web/package.json
|
||||||
|
|
||||||
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "${{ inputs.aws_s3_prefix }}", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-latest", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
|
|
||||||
jq --arg teamid "${{ secrets.APPLE_TEAM_ID }}" '.build.mac.notarize.teamId = $teamid' electron/package.json > /tmp/package.json
|
jq --arg teamid "${{ secrets.APPLE_TEAM_ID }}" '.build.mac.notarize.teamId = $teamid' electron/package.json > /tmp/package.json
|
||||||
@ -76,13 +80,25 @@ jobs:
|
|||||||
|
|
||||||
cat electron/package.json
|
cat electron/package.json
|
||||||
|
|
||||||
|
- name: Change App Name for beta version
|
||||||
|
if: inputs.beta == true
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
chmod +x .github/scripts/rename-app-beta.sh
|
||||||
|
.github/scripts/rename-app-beta.sh ./electron/package.json
|
||||||
|
chmod +x .github/scripts/rename-workspace-beta.sh
|
||||||
|
.github/scripts/rename-workspace-beta.sh ./package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./electron/package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./package.json
|
||||||
|
jq '.build.publish = [{"provider": "generic", "url": "https://delta.jan.ai/beta", "channel": "beta"}, {"provider": "github", "owner": "janhq", "repo": "jan", "channel": "beta"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-beta", "channel": "beta"}]' electron/package.json > /tmp/package.json
|
||||||
|
mv /tmp/package.json electron/package.json
|
||||||
|
cat electron/package.json
|
||||||
|
|
||||||
- name: Update app version base on tag
|
- name: Update app version base on tag
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
||||||
run: |
|
run: |
|
||||||
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
||||||
echo "Error: Tag is not valid!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
@ -131,7 +147,7 @@ jobs:
|
|||||||
AWS_MAX_ATTEMPTS: "5"
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Build and publish app to github
|
- name: Build and publish app to github
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == false
|
||||||
run: |
|
run: |
|
||||||
make build-and-publish
|
make build-and-publish
|
||||||
env:
|
env:
|
||||||
@ -146,6 +162,25 @@ jobs:
|
|||||||
ANALYTICS_ID: ${{ secrets.JAN_APP_UMAMI_PROJECT_API_KEY }}
|
ANALYTICS_ID: ${{ secrets.JAN_APP_UMAMI_PROJECT_API_KEY }}
|
||||||
ANALYTICS_HOST: ${{ secrets.JAN_APP_UMAMI_URL }}
|
ANALYTICS_HOST: ${{ secrets.JAN_APP_UMAMI_URL }}
|
||||||
|
|
||||||
|
- name: Build and publish app to github
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == true
|
||||||
|
run: |
|
||||||
|
make build-and-publish
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
CSC_LINK: "/tmp/codesign.p12"
|
||||||
|
CSC_KEY_PASSWORD: ${{ secrets.CODE_SIGN_P12_PASSWORD }}
|
||||||
|
CSC_IDENTITY_AUTO_DISCOVERY: "true"
|
||||||
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
||||||
|
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
|
||||||
|
APP_PATH: "."
|
||||||
|
DEVELOPER_ID: ${{ secrets.DEVELOPER_ID }}
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
|
AWS_DEFAULT_REGION: auto
|
||||||
|
AWS_EC2_METADATA_DISABLED: "true"
|
||||||
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
if: inputs.public_provider != 'github'
|
if: inputs.public_provider != 'github'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@ -154,7 +189,15 @@ jobs:
|
|||||||
path: ./electron/dist/jan-mac-arm64-${{ inputs.new_version }}.dmg
|
path: ./electron/dist/jan-mac-arm64-${{ inputs.new_version }}.dmg
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
|
if: inputs.beta == false
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: latest-mac-arm64
|
name: latest-mac-arm64
|
||||||
path: ./electron/dist/latest-mac.yml
|
path: ./electron/dist/latest-mac.yml
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
if: inputs.beta == true
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: beta-mac-arm64
|
||||||
|
path: ./electron/dist/beta-mac.yml
|
||||||
55
.github/workflows/template-build-macos-x64.yml
vendored
55
.github/workflows/template-build-macos-x64.yml
vendored
@ -19,6 +19,10 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: '/latest/'
|
default: '/latest/'
|
||||||
|
beta:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
secrets:
|
secrets:
|
||||||
DELTA_AWS_S3_BUCKET_NAME:
|
DELTA_AWS_S3_BUCKET_NAME:
|
||||||
required: false
|
required: false
|
||||||
@ -68,7 +72,7 @@ jobs:
|
|||||||
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json web/package.json
|
mv /tmp/package.json web/package.json
|
||||||
|
|
||||||
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "${{ inputs.aws_s3_prefix }}", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-latest", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
|
|
||||||
jq --arg teamid "${{ secrets.APPLE_TEAM_ID }}" '.build.mac.notarize.teamId = $teamid' electron/package.json > /tmp/package.json
|
jq --arg teamid "${{ secrets.APPLE_TEAM_ID }}" '.build.mac.notarize.teamId = $teamid' electron/package.json > /tmp/package.json
|
||||||
@ -76,13 +80,25 @@ jobs:
|
|||||||
|
|
||||||
cat electron/package.json
|
cat electron/package.json
|
||||||
|
|
||||||
|
- name: Change App Name for beta version
|
||||||
|
if: inputs.beta == true
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
chmod +x .github/scripts/rename-app-beta.sh
|
||||||
|
.github/scripts/rename-app-beta.sh ./electron/package.json
|
||||||
|
chmod +x .github/scripts/rename-workspace-beta.sh
|
||||||
|
.github/scripts/rename-workspace-beta.sh ./package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./electron/package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./package.json
|
||||||
|
jq '.build.publish = [{"provider": "generic", "url": "https://delta.jan.ai/beta", "channel": "beta"}, {"provider": "github", "owner": "janhq", "repo": "jan", "channel": "beta"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-beta", "channel": "beta"}]' electron/package.json > /tmp/package.json
|
||||||
|
mv /tmp/package.json electron/package.json
|
||||||
|
cat electron/package.json
|
||||||
|
|
||||||
- name: Update app version base on tag
|
- name: Update app version base on tag
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
||||||
run: |
|
run: |
|
||||||
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
||||||
echo "Error: Tag is not valid!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
@ -131,7 +147,7 @@ jobs:
|
|||||||
AWS_MAX_ATTEMPTS: "5"
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Build and publish app to github
|
- name: Build and publish app to github
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == false
|
||||||
run: |
|
run: |
|
||||||
make build-and-publish
|
make build-and-publish
|
||||||
env:
|
env:
|
||||||
@ -146,6 +162,25 @@ jobs:
|
|||||||
ANALYTICS_ID: ${{ secrets.JAN_APP_UMAMI_PROJECT_API_KEY }}
|
ANALYTICS_ID: ${{ secrets.JAN_APP_UMAMI_PROJECT_API_KEY }}
|
||||||
ANALYTICS_HOST: ${{ secrets.JAN_APP_UMAMI_URL }}
|
ANALYTICS_HOST: ${{ secrets.JAN_APP_UMAMI_URL }}
|
||||||
|
|
||||||
|
- name: Build and publish app to github
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == true
|
||||||
|
run: |
|
||||||
|
make build-and-publish
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
CSC_LINK: "/tmp/codesign.p12"
|
||||||
|
CSC_KEY_PASSWORD: ${{ secrets.CODE_SIGN_P12_PASSWORD }}
|
||||||
|
CSC_IDENTITY_AUTO_DISCOVERY: "true"
|
||||||
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
||||||
|
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
|
||||||
|
APP_PATH: "."
|
||||||
|
DEVELOPER_ID: ${{ secrets.DEVELOPER_ID }}
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
|
AWS_DEFAULT_REGION: auto
|
||||||
|
AWS_EC2_METADATA_DISABLED: "true"
|
||||||
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
if: inputs.public_provider != 'github'
|
if: inputs.public_provider != 'github'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@ -154,7 +189,15 @@ jobs:
|
|||||||
path: ./electron/dist/jan-mac-x64-${{ inputs.new_version }}.dmg
|
path: ./electron/dist/jan-mac-x64-${{ inputs.new_version }}.dmg
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
|
if: inputs.beta == false
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: latest-mac-x64
|
name: latest-mac-x64
|
||||||
path: ./electron/dist/latest-mac.yml
|
path: ./electron/dist/latest-mac.yml
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
if: inputs.beta == true
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: beta-mac-x64
|
||||||
|
path: ./electron/dist/beta-mac.yml
|
||||||
54
.github/workflows/template-build-windows-x64.yml
vendored
54
.github/workflows/template-build-windows-x64.yml
vendored
@ -19,6 +19,10 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: '/latest/'
|
default: '/latest/'
|
||||||
|
beta:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
secrets:
|
secrets:
|
||||||
DELTA_AWS_S3_BUCKET_NAME:
|
DELTA_AWS_S3_BUCKET_NAME:
|
||||||
required: false
|
required: false
|
||||||
@ -69,21 +73,37 @@ jobs:
|
|||||||
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${{ inputs.new_version }}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json web/package.json
|
mv /tmp/package.json web/package.json
|
||||||
|
|
||||||
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "${{ inputs.aws_s3_prefix }}", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
jq '.build.publish = [{"provider": "generic", "url": "${{ secrets.CLOUDFLARE_R2_PUBLIC_URL }}", "channel": "latest"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-latest", "channel": "latest"}]' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
|
|
||||||
jq '.build.win.sign = "./sign.js"' electron/package.json > /tmp/package.json
|
jq '.build.win.sign = "./sign.js"' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
cat electron/package.json
|
cat electron/package.json
|
||||||
|
|
||||||
|
- name: Change App Name for beta version
|
||||||
|
if: inputs.beta == true
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
chmod +x .github/scripts/rename-app-beta.sh
|
||||||
|
.github/scripts/rename-app-beta.sh ./electron/package.json
|
||||||
|
chmod +x .github/scripts/rename-workspace-beta.sh
|
||||||
|
.github/scripts/rename-workspace-beta.sh ./package.json
|
||||||
|
chmod +x .github/scripts/rename-uninstaller-beta.sh
|
||||||
|
.github/scripts/rename-uninstaller-beta.sh
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./electron/package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./package.json
|
||||||
|
echo "------------------------"
|
||||||
|
cat ./electron/scripts/uninstaller.nsh
|
||||||
|
jq '.build.publish = [{"provider": "generic", "url": "https://delta.jan.ai/beta", "channel": "beta"}, {"provider": "github", "owner": "janhq", "repo": "jan", "channel": "beta"}, {"provider": "s3", "acl": null, "bucket": "${{ secrets.DELTA_AWS_S3_BUCKET_NAME }}", "region": "${{ secrets.DELTA_AWS_REGION}}", "path": "temp-beta", "channel": "beta"}]' electron/package.json > /tmp/package.json
|
||||||
|
mv /tmp/package.json electron/package.json
|
||||||
|
cat electron/package.json
|
||||||
|
|
||||||
- name: Update app version base on tag
|
- name: Update app version base on tag
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
if [[ ! "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
||||||
echo "Error: Tag is not valid!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' electron/package.json > /tmp/package.json
|
||||||
mv /tmp/package.json electron/package.json
|
mv /tmp/package.json electron/package.json
|
||||||
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
jq --arg version "${VERSION_TAG#v}" '.version = $version' web/package.json > /tmp/package.json
|
||||||
@ -113,7 +133,7 @@ jobs:
|
|||||||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
||||||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
|
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
|
||||||
AZURE_CERT_NAME: ${{ secrets.AZURE_CERT_NAME }}
|
AZURE_CERT_NAME: homebrewltd
|
||||||
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
AWS_DEFAULT_REGION: auto
|
AWS_DEFAULT_REGION: auto
|
||||||
@ -121,7 +141,7 @@ jobs:
|
|||||||
AWS_MAX_ATTEMPTS: "5"
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
|
||||||
- name: Build app and publish app to github
|
- name: Build app and publish app to github
|
||||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github'
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == false
|
||||||
run: |
|
run: |
|
||||||
make build-and-publish
|
make build-and-publish
|
||||||
env:
|
env:
|
||||||
@ -132,7 +152,25 @@ jobs:
|
|||||||
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
||||||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
|
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
|
||||||
AZURE_CERT_NAME: ${{ secrets.AZURE_CERT_NAME }}
|
AZURE_CERT_NAME: homebrewltd
|
||||||
|
|
||||||
|
- name: Build app and publish app to github
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && inputs.public_provider == 'github' && inputs.beta == true
|
||||||
|
run: |
|
||||||
|
make build-and-publish
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.DELTA_AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELTA_AWS_SECRET_ACCESS_KEY }}
|
||||||
|
AWS_DEFAULT_REGION: auto
|
||||||
|
AWS_EC2_METADATA_DISABLED: "true"
|
||||||
|
AWS_MAX_ATTEMPTS: "5"
|
||||||
|
AZURE_KEY_VAULT_URI: ${{ secrets.AZURE_KEY_VAULT_URI }}
|
||||||
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
||||||
|
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
|
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
|
||||||
|
# AZURE_CERT_NAME: ${{ secrets.AZURE_CERT_NAME }}
|
||||||
|
AZURE_CERT_NAME: homebrewltd
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
if: inputs.public_provider != 'github'
|
if: inputs.public_provider != 'github'
|
||||||
|
|||||||
@ -77,7 +77,7 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint . --ext \".js,.jsx,.ts,.tsx\"",
|
"lint": "eslint . --ext \".js,.jsx,.ts,.tsx\"",
|
||||||
"test:e2e": "xvfb-maybe -- playwright test --workers=1",
|
"test:e2e": "playwright test --workers=1",
|
||||||
"copy:assets": "rimraf --glob \"./pre-install/*.tgz\" && cpx \"../pre-install/*.tgz\" \"./pre-install\"",
|
"copy:assets": "rimraf --glob \"./pre-install/*.tgz\" && cpx \"../pre-install/*.tgz\" \"./pre-install\"",
|
||||||
"dev": "yarn copy:assets && tsc -p . && electron .",
|
"dev": "yarn copy:assets && tsc -p . && electron .",
|
||||||
"compile": "tsc -p .",
|
"compile": "tsc -p .",
|
||||||
@ -128,8 +128,7 @@
|
|||||||
"rimraf": "^5.0.5",
|
"rimraf": "^5.0.5",
|
||||||
"run-script-os": "^1.1.6",
|
"run-script-os": "^1.1.6",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.3.3",
|
||||||
"@reportportal/agent-js-playwright": "^5.1.7",
|
"@reportportal/agent-js-playwright": "^5.1.7"
|
||||||
"xvfb-maybe": "^0.2.1"
|
|
||||||
},
|
},
|
||||||
"installConfig": {
|
"installConfig": {
|
||||||
"hoistingLimits": "workspaces"
|
"hoistingLimits": "workspaces"
|
||||||
|
|||||||
@ -14,7 +14,7 @@
|
|||||||
{
|
{
|
||||||
"key": "chat-completions-endpoint",
|
"key": "chat-completions-endpoint",
|
||||||
"title": "Chat Completions Endpoint",
|
"title": "Chat Completions Endpoint",
|
||||||
"description": "The endpoint to use for chat completions. See the [Martian API documentation](https://docs.withmartian.com/martian-model-router/api-reference/get-chat-completions) for more information.",
|
"description": "The endpoint to use for chat completions. See the [Martian API documentation](https://docs.withmartian.com/martian-model-router/getting-started/quickstart-integrating-martian-into-your-codebase) for more information.",
|
||||||
"controllerType": "input",
|
"controllerType": "input",
|
||||||
"controllerProps": {
|
"controllerProps": {
|
||||||
"placeholder": "https://withmartian.com/api/openai/v1/chat/completions",
|
"placeholder": "https://withmartian.com/api/openai/v1/chat/completions",
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@janhq/inference-cortex-extension",
|
"name": "@janhq/inference-cortex-extension",
|
||||||
"productName": "Cortex Inference Engine",
|
"productName": "Cortex Inference Engine",
|
||||||
"version": "1.0.19",
|
"version": "1.0.20",
|
||||||
"description": "This extension embeds cortex.cpp, a lightweight inference engine written in C++. See https://jan.ai.\nAdditional dependencies could be installed to run without Cuda Toolkit installation.",
|
"description": "This extension embeds cortex.cpp, a lightweight inference engine written in C++. See https://jan.ai.\nAdditional dependencies could be installed to run without Cuda Toolkit installation.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"node": "dist/node/index.cjs.js",
|
"node": "dist/node/index.cjs.js",
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
"id": "llava-13b",
|
"id": "llava-13b",
|
||||||
"object": "model",
|
"object": "model",
|
||||||
"name": "LlaVa 13B Q4",
|
"name": "LlaVa 13B Q4",
|
||||||
"version": "1.1",
|
"version": "1.2",
|
||||||
"description": "LlaVa can bring vision understanding to Jan",
|
"description": "LlaVa can bring vision understanding to Jan",
|
||||||
"format": "gguf",
|
"format": "gguf",
|
||||||
"settings": {
|
"settings": {
|
||||||
@ -24,7 +24,8 @@
|
|||||||
"mmproj": "mmproj-model-f16.gguf"
|
"mmproj": "mmproj-model-f16.gguf"
|
||||||
},
|
},
|
||||||
"parameters": {
|
"parameters": {
|
||||||
"max_tokens": 4096
|
"max_tokens": 4096,
|
||||||
|
"stop": ["</s>"]
|
||||||
},
|
},
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"author": "liuhaotian",
|
"author": "liuhaotian",
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
"id": "llava-7b",
|
"id": "llava-7b",
|
||||||
"object": "model",
|
"object": "model",
|
||||||
"name": "LlaVa 7B",
|
"name": "LlaVa 7B",
|
||||||
"version": "1.1",
|
"version": "1.2",
|
||||||
"description": "LlaVa can bring vision understanding to Jan",
|
"description": "LlaVa can bring vision understanding to Jan",
|
||||||
"format": "gguf",
|
"format": "gguf",
|
||||||
"settings": {
|
"settings": {
|
||||||
@ -24,7 +24,8 @@
|
|||||||
"mmproj": "mmproj-model-f16.gguf"
|
"mmproj": "mmproj-model-f16.gguf"
|
||||||
},
|
},
|
||||||
"parameters": {
|
"parameters": {
|
||||||
"max_tokens": 4096
|
"max_tokens": 4096,
|
||||||
|
"stop": ["</s>"]
|
||||||
},
|
},
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"author": "liuhaotian",
|
"author": "liuhaotian",
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@janhq/model-extension",
|
"name": "@janhq/model-extension",
|
||||||
"productName": "Model Management",
|
"productName": "Model Management",
|
||||||
"version": "1.0.33",
|
"version": "1.0.34",
|
||||||
"description": "Model Management Extension provides model exploration and seamless downloads",
|
"description": "Model Management Extension provides model exploration and seamless downloads",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"node": "dist/node/index.cjs.js",
|
"node": "dist/node/index.cjs.js",
|
||||||
|
|||||||
@ -411,7 +411,8 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes(JanModelExtension._tensorRtEngineFormat)
|
.includes(JanModelExtension._tensorRtEngineFormat)
|
||||||
)
|
)
|
||||||
})?.length > 0 // TODO: find better way (can use basename to check the file name with source url)
|
// Check if the number of matched files equals the number of sources
|
||||||
|
})?.length >= model.sources.length
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@ -35,6 +35,7 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
white-space: nowrap;
|
||||||
color: hsla(var(--text-secondary));
|
color: hsla(var(--text-secondary));
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|||||||
@ -306,7 +306,7 @@ const ModelDropdown = ({
|
|||||||
className={twMerge('relative', disabled && 'pointer-events-none')}
|
className={twMerge('relative', disabled && 'pointer-events-none')}
|
||||||
data-testid="model-selector"
|
data-testid="model-selector"
|
||||||
>
|
>
|
||||||
<div ref={setToggle}>
|
<div className="flex [&>div]:w-full" ref={setToggle}>
|
||||||
{chatInputMode ? (
|
{chatInputMode ? (
|
||||||
<Badge
|
<Badge
|
||||||
data-testid="model-selector-badge"
|
data-testid="model-selector-badge"
|
||||||
|
|||||||
@ -25,6 +25,7 @@ const SettingComponent: React.FC<Props> = ({
|
|||||||
case 'slider': {
|
case 'slider': {
|
||||||
const { min, max, step, value } =
|
const { min, max, step, value } =
|
||||||
data.controllerProps as SliderComponentProps
|
data.controllerProps as SliderComponentProps
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SliderRightPanel
|
<SliderRightPanel
|
||||||
key={data.key}
|
key={data.key}
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
|
|
||||||
import { Slider, Input, Tooltip } from '@janhq/joi'
|
import { Slider, Input, Tooltip } from '@janhq/joi'
|
||||||
|
|
||||||
@ -32,6 +32,10 @@ const SliderRightPanel = ({
|
|||||||
|
|
||||||
useClickOutside(() => setShowTooltip({ max: false, min: false }), null, [])
|
useClickOutside(() => setShowTooltip({ max: false, min: false }), null, [])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setVal(value.toString())
|
||||||
|
}, [value])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<div className="mb-3 flex items-center gap-x-2">
|
<div className="mb-3 flex items-center gap-x-2">
|
||||||
|
|||||||
@ -50,7 +50,10 @@
|
|||||||
"ulidx": "^2.3.0",
|
"ulidx": "^2.3.0",
|
||||||
"use-debounce": "^10.0.0",
|
"use-debounce": "^10.0.0",
|
||||||
"uuid": "^9.0.1",
|
"uuid": "^9.0.1",
|
||||||
"zod": "^3.22.4"
|
"zod": "^3.22.4",
|
||||||
|
"slate": "latest",
|
||||||
|
"slate-react": "latest",
|
||||||
|
"slate-history": "latest"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@next/eslint-plugin-next": "^14.0.1",
|
"@next/eslint-plugin-next": "^14.0.1",
|
||||||
|
|||||||
@ -96,6 +96,7 @@ const HubScreen = () => {
|
|||||||
{!filteredModels.length ? (
|
{!filteredModels.length ? (
|
||||||
<BlankState title="No search results found" />
|
<BlankState title="No search results found" />
|
||||||
) : (
|
) : (
|
||||||
|
<>
|
||||||
<div className="mb-4 flex w-full justify-end">
|
<div className="mb-4 flex w-full justify-end">
|
||||||
<Select
|
<Select
|
||||||
value={sortSelected}
|
value={sortSelected}
|
||||||
@ -105,8 +106,9 @@ const HubScreen = () => {
|
|||||||
options={sortMenus}
|
options={sortMenus}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
|
||||||
<ModelList models={filteredModels} />
|
<ModelList models={filteredModels} />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</ScrollArea>
|
</ScrollArea>
|
||||||
</CenterPanelContainer>
|
</CenterPanelContainer>
|
||||||
|
|||||||
@ -127,9 +127,10 @@ const LocalServerLeftPanel = () => {
|
|||||||
{serverEnabled ? 'Stop' : 'Start'} Server
|
{serverEnabled ? 'Stop' : 'Start'} Server
|
||||||
</Button>
|
</Button>
|
||||||
{serverEnabled && (
|
{serverEnabled && (
|
||||||
<Button variant="soft" asChild>
|
<Button variant="soft" asChild className="whitespace-nowrap">
|
||||||
<a href={`http://localhost:${port}`} target="_blank">
|
<a href={`http://localhost:${port}`} target="_blank">
|
||||||
API Playground <ExternalLinkIcon size={20} className="ml-2" />
|
<span>API Playground</span>{' '}
|
||||||
|
<ExternalLinkIcon size={20} className="ml-2" />
|
||||||
</a>
|
</a>
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@ -211,9 +211,6 @@ const Advanced = () => {
|
|||||||
saveSettings({ gpusInUse: updatedGpusInUse })
|
saveSettings({ gpusInUse: updatedGpusInUse })
|
||||||
}
|
}
|
||||||
|
|
||||||
const gpuSelectionPlaceHolder =
|
|
||||||
gpuList.length > 0 ? 'Select GPU' : "You don't have any compatible GPU"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle click outside
|
* Handle click outside
|
||||||
*/
|
*/
|
||||||
@ -317,6 +314,8 @@ const Advanced = () => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{gpuList.length > 0 && (
|
||||||
<div className="mt-2 flex w-full flex-col rounded-lg px-2 py-4">
|
<div className="mt-2 flex w-full flex-col rounded-lg px-2 py-4">
|
||||||
<label className="mb-2 mr-2 inline-block font-medium">
|
<label className="mb-2 mr-2 inline-block font-medium">
|
||||||
Choose device(s)
|
Choose device(s)
|
||||||
@ -326,7 +325,7 @@ const Advanced = () => {
|
|||||||
value={selectedGpu.join() || ''}
|
value={selectedGpu.join() || ''}
|
||||||
className="w-full cursor-pointer"
|
className="w-full cursor-pointer"
|
||||||
readOnly
|
readOnly
|
||||||
placeholder={gpuSelectionPlaceHolder}
|
placeholder=""
|
||||||
suffixIcon={
|
suffixIcon={
|
||||||
<ChevronDownIcon
|
<ChevronDownIcon
|
||||||
size={14}
|
size={14}
|
||||||
@ -343,7 +342,9 @@ const Advanced = () => {
|
|||||||
ref={setDropdownOptions}
|
ref={setDropdownOptions}
|
||||||
>
|
>
|
||||||
<div className="w-full p-4">
|
<div className="w-full p-4">
|
||||||
<p>{vulkanEnabled ? 'Vulkan Supported GPUs' : 'Nvidia'}</p>
|
<p>
|
||||||
|
{vulkanEnabled ? 'Vulkan Supported GPUs' : 'Nvidia'}
|
||||||
|
</p>
|
||||||
<div className="py-2">
|
<div className="py-2">
|
||||||
<div className="rounded-lg">
|
<div className="rounded-lg">
|
||||||
{gpuList
|
{gpuList
|
||||||
@ -382,8 +383,8 @@ const Advanced = () => {
|
|||||||
className="flex-shrink-0"
|
className="flex-shrink-0"
|
||||||
/>
|
/>
|
||||||
<p className="text-xs leading-relaxed">
|
<p className="text-xs leading-relaxed">
|
||||||
If multi-GPU is enabled with different GPU models or
|
If multi-GPU is enabled with different GPU models
|
||||||
without NVLink, it could impact token speed.
|
or without NVLink, it could impact token speed.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
@ -392,6 +393,7 @@ const Advanced = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,408 @@
|
|||||||
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||||
|
import { useCallback, useEffect, useRef, useState } from 'react'
|
||||||
|
|
||||||
|
import { MessageStatus } from '@janhq/core'
|
||||||
|
import hljs from 'highlight.js'
|
||||||
|
|
||||||
|
import { useAtom, useAtomValue } from 'jotai'
|
||||||
|
import { BaseEditor, createEditor, Editor, Element, Transforms } from 'slate'
|
||||||
|
import { withHistory } from 'slate-history' // Import withHistory
|
||||||
|
import {
|
||||||
|
Editable,
|
||||||
|
ReactEditor,
|
||||||
|
Slate,
|
||||||
|
withReact,
|
||||||
|
RenderLeafProps,
|
||||||
|
} from 'slate-react'
|
||||||
|
|
||||||
|
import { twMerge } from 'tailwind-merge'
|
||||||
|
|
||||||
|
import { currentPromptAtom } from '@/containers/Providers/Jotai'
|
||||||
|
|
||||||
|
import { useActiveModel } from '@/hooks/useActiveModel'
|
||||||
|
import useSendChatMessage from '@/hooks/useSendChatMessage'
|
||||||
|
|
||||||
|
import { getCurrentChatMessagesAtom } from '@/helpers/atoms/ChatMessage.atom'
|
||||||
|
|
||||||
|
import {
|
||||||
|
getActiveThreadIdAtom,
|
||||||
|
activeSettingInputBoxAtom,
|
||||||
|
} from '@/helpers/atoms/Thread.atom'
|
||||||
|
|
||||||
|
type CustomElement = {
|
||||||
|
type: 'paragraph' | 'code' | null
|
||||||
|
children: CustomText[]
|
||||||
|
language?: string // Store the language for code blocks
|
||||||
|
}
|
||||||
|
type CustomText = {
|
||||||
|
text: string
|
||||||
|
code?: boolean
|
||||||
|
language?: string
|
||||||
|
className?: string
|
||||||
|
type?: 'paragraph' | 'code' // Add the type property
|
||||||
|
format?: 'bold' | 'italic'
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module 'slate' {
|
||||||
|
interface CustomTypes {
|
||||||
|
Editor: BaseEditor & ReactEditor
|
||||||
|
Element: CustomElement
|
||||||
|
Text: CustomText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const initialValue: CustomElement[] = [
|
||||||
|
{
|
||||||
|
type: 'paragraph',
|
||||||
|
children: [{ text: '' }],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
type RichTextEditorProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>
|
||||||
|
|
||||||
|
const RichTextEditor = ({
|
||||||
|
className,
|
||||||
|
style,
|
||||||
|
disabled,
|
||||||
|
placeholder,
|
||||||
|
spellCheck,
|
||||||
|
}: RichTextEditorProps) => {
|
||||||
|
const [editor] = useState(() => withHistory(withReact(createEditor())))
|
||||||
|
const currentLanguage = useRef<string>('plaintext')
|
||||||
|
const [currentPrompt, setCurrentPrompt] = useAtom(currentPromptAtom)
|
||||||
|
const textareaRef = useRef<HTMLDivElement>(null)
|
||||||
|
const activeThreadId = useAtomValue(getActiveThreadIdAtom)
|
||||||
|
const activeSettingInputBox = useAtomValue(activeSettingInputBoxAtom)
|
||||||
|
const messages = useAtomValue(getCurrentChatMessagesAtom)
|
||||||
|
const { sendChatMessage } = useSendChatMessage()
|
||||||
|
const { stopInference } = useActiveModel()
|
||||||
|
|
||||||
|
// The decorate function identifies code blocks and marks the ranges
|
||||||
|
const decorate = useCallback(
|
||||||
|
(entry: [any, any]) => {
|
||||||
|
const ranges: any[] = []
|
||||||
|
const [node, path] = entry
|
||||||
|
|
||||||
|
if (Editor.isBlock(editor, node) && node.type === 'paragraph') {
|
||||||
|
node.children.forEach((child: { text: any }, childIndex: number) => {
|
||||||
|
const text = child.text
|
||||||
|
|
||||||
|
// Match bold text pattern *text*
|
||||||
|
const boldMatches = [...text.matchAll(/(\*.*?\*)/g)] // Find bold patterns
|
||||||
|
boldMatches.forEach((match) => {
|
||||||
|
const startOffset = match.index + 1 || 0
|
||||||
|
const length = match[0].length - 2
|
||||||
|
|
||||||
|
ranges.push({
|
||||||
|
anchor: { path: [...path, childIndex], offset: startOffset },
|
||||||
|
focus: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: startOffset + length,
|
||||||
|
},
|
||||||
|
format: 'italic',
|
||||||
|
className: 'italic',
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Editor.isBlock(editor, node) && node.type === 'paragraph') {
|
||||||
|
node.children.forEach((child: { text: any }, childIndex: number) => {
|
||||||
|
const text = child.text
|
||||||
|
|
||||||
|
// Match bold text pattern **text**
|
||||||
|
const boldMatches = [...text.matchAll(/(\*\*.*?\*\*)/g)] // Find bold patterns
|
||||||
|
boldMatches.forEach((match) => {
|
||||||
|
const startOffset = match.index + 2 || 0
|
||||||
|
const length = match[0].length - 4
|
||||||
|
|
||||||
|
ranges.push({
|
||||||
|
anchor: { path: [...path, childIndex], offset: startOffset },
|
||||||
|
focus: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: startOffset + length,
|
||||||
|
},
|
||||||
|
format: 'bold',
|
||||||
|
className: 'font-bold',
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Editor.isBlock(editor, node) && node.type === 'code') {
|
||||||
|
node.children.forEach((child: { text: any }, childIndex: number) => {
|
||||||
|
const text = child.text
|
||||||
|
|
||||||
|
// Match code block start and end
|
||||||
|
const startMatch = text.match(/^```(\w*)$/)
|
||||||
|
const endMatch = text.match(/^```$/)
|
||||||
|
const inlineMatch = text.match(/^`([^`]+)`$/) // Match inline code
|
||||||
|
|
||||||
|
if (startMatch) {
|
||||||
|
// If it's the start of a code block, store the language
|
||||||
|
currentLanguage.current = startMatch[1] || 'plaintext'
|
||||||
|
} else if (endMatch) {
|
||||||
|
// Reset language when code block ends
|
||||||
|
currentLanguage.current = 'plaintext'
|
||||||
|
} else if (inlineMatch) {
|
||||||
|
// Apply syntax highlighting to inline code
|
||||||
|
const codeContent = inlineMatch[1] // Get the content within the backticks
|
||||||
|
try {
|
||||||
|
hljs.highlight(codeContent, {
|
||||||
|
language:
|
||||||
|
currentLanguage.current.length > 1
|
||||||
|
? currentLanguage.current
|
||||||
|
: 'plaintext',
|
||||||
|
}).value
|
||||||
|
} catch (err) {
|
||||||
|
hljs.highlight(codeContent, {
|
||||||
|
language: 'javascript',
|
||||||
|
}).value
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate the range for the inline code
|
||||||
|
const length = codeContent.length
|
||||||
|
ranges.push({
|
||||||
|
anchor: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: inlineMatch.index + 1,
|
||||||
|
},
|
||||||
|
focus: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: inlineMatch.index + 1 + length,
|
||||||
|
},
|
||||||
|
type: 'code',
|
||||||
|
code: true,
|
||||||
|
language: currentLanguage.current,
|
||||||
|
className: '', // Specify class name if needed
|
||||||
|
})
|
||||||
|
} else if (currentLanguage.current !== 'plaintext') {
|
||||||
|
// Highlight entire code line if in a code block
|
||||||
|
const leadingSpaces = text.match(/^\s*/)?.[0] ?? '' // Capture leading spaces
|
||||||
|
const codeContent = text.trimStart() // Remove leading spaces for highlighting
|
||||||
|
|
||||||
|
let highlighted = ''
|
||||||
|
highlighted = hljs.highlightAuto(codeContent).value
|
||||||
|
try {
|
||||||
|
highlighted = hljs.highlight(codeContent, {
|
||||||
|
language:
|
||||||
|
currentLanguage.current.length > 1
|
||||||
|
? currentLanguage.current
|
||||||
|
: 'plaintext',
|
||||||
|
}).value
|
||||||
|
} catch (err) {
|
||||||
|
highlighted = hljs.highlight(codeContent, {
|
||||||
|
language: 'javascript',
|
||||||
|
}).value
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DOMParser()
|
||||||
|
const doc = parser.parseFromString(highlighted, 'text/html')
|
||||||
|
|
||||||
|
let slateTextIndex = 0
|
||||||
|
|
||||||
|
// Adjust to include leading spaces in the ranges and preserve formatting
|
||||||
|
ranges.push({
|
||||||
|
anchor: { path: [...path, childIndex], offset: 0 },
|
||||||
|
focus: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: leadingSpaces.length,
|
||||||
|
},
|
||||||
|
type: 'code',
|
||||||
|
code: true,
|
||||||
|
language: currentLanguage.current,
|
||||||
|
className: '', // No class for leading spaces
|
||||||
|
})
|
||||||
|
|
||||||
|
doc.body.childNodes.forEach((childNode) => {
|
||||||
|
const childText = childNode.textContent || ''
|
||||||
|
const length = childText.length
|
||||||
|
const className =
|
||||||
|
childNode.nodeType === Node.ELEMENT_NODE
|
||||||
|
? (childNode as HTMLElement).className
|
||||||
|
: ''
|
||||||
|
|
||||||
|
ranges.push({
|
||||||
|
anchor: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: slateTextIndex + leadingSpaces.length,
|
||||||
|
},
|
||||||
|
focus: {
|
||||||
|
path: [...path, childIndex],
|
||||||
|
offset: slateTextIndex + leadingSpaces.length + length,
|
||||||
|
},
|
||||||
|
type: 'code',
|
||||||
|
code: true,
|
||||||
|
language: currentLanguage.current,
|
||||||
|
className,
|
||||||
|
})
|
||||||
|
|
||||||
|
slateTextIndex += length
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
ranges.push({
|
||||||
|
anchor: { path: [...path, childIndex], offset: 0 },
|
||||||
|
focus: { path: [...path, childIndex], offset: text.length },
|
||||||
|
type: 'paragraph', // Treat as a paragraph
|
||||||
|
code: false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return ranges
|
||||||
|
},
|
||||||
|
[editor]
|
||||||
|
)
|
||||||
|
|
||||||
|
// RenderLeaf applies the decoration styles
|
||||||
|
const renderLeaf = useCallback(
|
||||||
|
({ attributes, children, leaf }: RenderLeafProps) => {
|
||||||
|
if (leaf.format === 'italic') {
|
||||||
|
return (
|
||||||
|
<i className={leaf.className} {...attributes}>
|
||||||
|
{children}
|
||||||
|
</i>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (leaf.format === 'bold') {
|
||||||
|
return (
|
||||||
|
<strong className={leaf.className} {...attributes}>
|
||||||
|
{children}
|
||||||
|
</strong>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (leaf.code) {
|
||||||
|
// Apply syntax highlighting to code blocks
|
||||||
|
return (
|
||||||
|
<code className={leaf.className} {...attributes}>
|
||||||
|
{children}
|
||||||
|
</code>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return <span {...attributes}>{children}</span>
|
||||||
|
},
|
||||||
|
[]
|
||||||
|
)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (textareaRef.current) {
|
||||||
|
textareaRef.current.focus()
|
||||||
|
}
|
||||||
|
}, [activeThreadId])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (textareaRef.current?.clientHeight) {
|
||||||
|
textareaRef.current.style.height = activeSettingInputBox
|
||||||
|
? '100px'
|
||||||
|
: '40px'
|
||||||
|
textareaRef.current.style.height = textareaRef.current.scrollHeight + 'px'
|
||||||
|
textareaRef.current.style.overflow =
|
||||||
|
textareaRef.current.clientHeight >= 390 ? 'auto' : 'hidden'
|
||||||
|
}
|
||||||
|
}, [textareaRef.current?.clientHeight, currentPrompt, activeSettingInputBox])
|
||||||
|
|
||||||
|
const onStopInferenceClick = async () => {
|
||||||
|
stopInference()
|
||||||
|
}
|
||||||
|
|
||||||
|
const resetEditor = useCallback(() => {
|
||||||
|
Transforms.delete(editor, {
|
||||||
|
at: {
|
||||||
|
anchor: Editor.start(editor, []),
|
||||||
|
focus: Editor.end(editor, []),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
// Adjust the height of the textarea to its initial state
|
||||||
|
if (textareaRef.current) {
|
||||||
|
textareaRef.current.style.height = '40px' // Reset to the initial height or your desired height
|
||||||
|
textareaRef.current.style.overflow = 'hidden' // Reset overflow style
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure the editor re-renders decorations
|
||||||
|
editor.onChange()
|
||||||
|
}, [editor])
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback(
|
||||||
|
(event: React.KeyboardEvent) => {
|
||||||
|
if (event.key === 'Enter' && !event.shiftKey) {
|
||||||
|
event.preventDefault()
|
||||||
|
if (messages[messages.length - 1]?.status !== MessageStatus.Pending) {
|
||||||
|
sendChatMessage(currentPrompt)
|
||||||
|
resetEditor()
|
||||||
|
} else onStopInferenceClick()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.key === '`') {
|
||||||
|
// Determine whether any of the currently selected blocks are code blocks.
|
||||||
|
const [match] = Editor.nodes(editor, {
|
||||||
|
match: (n) =>
|
||||||
|
Element.isElement(n) && (n as CustomElement).type === 'code',
|
||||||
|
})
|
||||||
|
// Toggle the block type dependsing on whether there's already a match.
|
||||||
|
Transforms.setNodes(
|
||||||
|
editor,
|
||||||
|
{ type: match ? 'paragraph' : 'code' },
|
||||||
|
{ match: (n) => Element.isElement(n) && Editor.isBlock(editor, n) }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.key === 'Tab') {
|
||||||
|
const [match] = Editor.nodes(editor, {
|
||||||
|
match: (n) => {
|
||||||
|
return (n as CustomElement).type === 'code'
|
||||||
|
},
|
||||||
|
mode: 'lowest',
|
||||||
|
})
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
event.preventDefault()
|
||||||
|
// Insert a tab character
|
||||||
|
Editor.insertText(editor, ' ') // Insert 2 spaces
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
[currentPrompt, editor, messages]
|
||||||
|
)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Slate
|
||||||
|
editor={editor}
|
||||||
|
initialValue={initialValue}
|
||||||
|
onChange={(value) => {
|
||||||
|
const combinedText = value
|
||||||
|
.map((block) => {
|
||||||
|
if ('children' in block) {
|
||||||
|
return block.children.map((child) => child.text).join('')
|
||||||
|
}
|
||||||
|
return ''
|
||||||
|
})
|
||||||
|
.join('\n')
|
||||||
|
|
||||||
|
setCurrentPrompt(combinedText)
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Editable
|
||||||
|
ref={textareaRef}
|
||||||
|
decorate={decorate} // Pass the decorate function
|
||||||
|
renderLeaf={renderLeaf} // Pass the renderLeaf function
|
||||||
|
onKeyDown={handleKeyDown}
|
||||||
|
className={twMerge(
|
||||||
|
className,
|
||||||
|
disabled &&
|
||||||
|
'cursor-not-allowed border-none bg-[hsla(var(--disabled-bg))] text-[hsla(var(--disabled-fg))]'
|
||||||
|
)}
|
||||||
|
placeholder={placeholder}
|
||||||
|
style={style}
|
||||||
|
disabled={disabled}
|
||||||
|
readOnly={disabled}
|
||||||
|
spellCheck={spellCheck}
|
||||||
|
/>
|
||||||
|
</Slate>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default RichTextEditor
|
||||||
@ -29,6 +29,8 @@ import { isLocalEngine } from '@/utils/modelEngine'
|
|||||||
import FileUploadPreview from '../FileUploadPreview'
|
import FileUploadPreview from '../FileUploadPreview'
|
||||||
import ImageUploadPreview from '../ImageUploadPreview'
|
import ImageUploadPreview from '../ImageUploadPreview'
|
||||||
|
|
||||||
|
import RichTextEditor from './RichTextEditor'
|
||||||
|
|
||||||
import { showRightPanelAtom } from '@/helpers/atoms/App.atom'
|
import { showRightPanelAtom } from '@/helpers/atoms/App.atom'
|
||||||
import { experimentalFeatureEnabledAtom } from '@/helpers/atoms/AppConfig.atom'
|
import { experimentalFeatureEnabledAtom } from '@/helpers/atoms/AppConfig.atom'
|
||||||
import { getCurrentChatMessagesAtom } from '@/helpers/atoms/ChatMessage.atom'
|
import { getCurrentChatMessagesAtom } from '@/helpers/atoms/ChatMessage.atom'
|
||||||
@ -40,7 +42,6 @@ import {
|
|||||||
getActiveThreadIdAtom,
|
getActiveThreadIdAtom,
|
||||||
isGeneratingResponseAtom,
|
isGeneratingResponseAtom,
|
||||||
threadStatesAtom,
|
threadStatesAtom,
|
||||||
waitingToSendMessage,
|
|
||||||
} from '@/helpers/atoms/Thread.atom'
|
} from '@/helpers/atoms/Thread.atom'
|
||||||
import { activeTabThreadRightPanelAtom } from '@/helpers/atoms/ThreadRightPanel.atom'
|
import { activeTabThreadRightPanelAtom } from '@/helpers/atoms/ThreadRightPanel.atom'
|
||||||
|
|
||||||
@ -48,7 +49,6 @@ const ChatInput = () => {
|
|||||||
const activeThread = useAtomValue(activeThreadAtom)
|
const activeThread = useAtomValue(activeThreadAtom)
|
||||||
const { stateModel } = useActiveModel()
|
const { stateModel } = useActiveModel()
|
||||||
const messages = useAtomValue(getCurrentChatMessagesAtom)
|
const messages = useAtomValue(getCurrentChatMessagesAtom)
|
||||||
// const [activeSetting, setActiveSetting] = useState(false)
|
|
||||||
const spellCheck = useAtomValue(spellCheckAtom)
|
const spellCheck = useAtomValue(spellCheckAtom)
|
||||||
|
|
||||||
const [currentPrompt, setCurrentPrompt] = useAtom(currentPromptAtom)
|
const [currentPrompt, setCurrentPrompt] = useAtom(currentPromptAtom)
|
||||||
@ -59,7 +59,6 @@ const ChatInput = () => {
|
|||||||
const selectedModel = useAtomValue(selectedModelAtom)
|
const selectedModel = useAtomValue(selectedModelAtom)
|
||||||
|
|
||||||
const activeThreadId = useAtomValue(getActiveThreadIdAtom)
|
const activeThreadId = useAtomValue(getActiveThreadIdAtom)
|
||||||
const [isWaitingToSend, setIsWaitingToSend] = useAtom(waitingToSendMessage)
|
|
||||||
const [fileUpload, setFileUpload] = useAtom(fileUploadAtom)
|
const [fileUpload, setFileUpload] = useAtom(fileUploadAtom)
|
||||||
const [showAttacmentMenus, setShowAttacmentMenus] = useState(false)
|
const [showAttacmentMenus, setShowAttacmentMenus] = useState(false)
|
||||||
const textareaRef = useRef<HTMLTextAreaElement>(null)
|
const textareaRef = useRef<HTMLTextAreaElement>(null)
|
||||||
@ -78,52 +77,15 @@ const ChatInput = () => {
|
|||||||
(threadState) => threadState.waitingForResponse
|
(threadState) => threadState.waitingForResponse
|
||||||
)
|
)
|
||||||
|
|
||||||
const onPromptChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
||||||
setCurrentPrompt(e.target.value)
|
|
||||||
}
|
|
||||||
|
|
||||||
const refAttachmentMenus = useClickOutside(() => setShowAttacmentMenus(false))
|
const refAttachmentMenus = useClickOutside(() => setShowAttacmentMenus(false))
|
||||||
const [showRightPanel, setShowRightPanel] = useAtom(showRightPanelAtom)
|
const [showRightPanel, setShowRightPanel] = useAtom(showRightPanelAtom)
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isWaitingToSend && activeThreadId) {
|
|
||||||
setIsWaitingToSend(false)
|
|
||||||
sendChatMessage(currentPrompt)
|
|
||||||
}
|
|
||||||
}, [
|
|
||||||
activeThreadId,
|
|
||||||
isWaitingToSend,
|
|
||||||
currentPrompt,
|
|
||||||
setIsWaitingToSend,
|
|
||||||
sendChatMessage,
|
|
||||||
])
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (textareaRef.current) {
|
if (textareaRef.current) {
|
||||||
textareaRef.current.focus()
|
textareaRef.current.focus()
|
||||||
}
|
}
|
||||||
}, [activeThreadId])
|
}, [activeThreadId])
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (textareaRef.current?.clientHeight) {
|
|
||||||
textareaRef.current.style.height = activeSettingInputBox
|
|
||||||
? '100px'
|
|
||||||
: '40px'
|
|
||||||
textareaRef.current.style.height = textareaRef.current.scrollHeight + 'px'
|
|
||||||
textareaRef.current.style.overflow =
|
|
||||||
textareaRef.current.clientHeight >= 390 ? 'auto' : 'hidden'
|
|
||||||
}
|
|
||||||
}, [textareaRef.current?.clientHeight, currentPrompt, activeSettingInputBox])
|
|
||||||
|
|
||||||
const onKeyDown = async (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
|
|
||||||
if (e.key === 'Enter' && !e.shiftKey && !e.nativeEvent.isComposing) {
|
|
||||||
e.preventDefault()
|
|
||||||
if (messages[messages.length - 1]?.status !== MessageStatus.Pending)
|
|
||||||
sendChatMessage(currentPrompt)
|
|
||||||
else onStopInferenceClick()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const onStopInferenceClick = async () => {
|
const onStopInferenceClick = async () => {
|
||||||
stopInference()
|
stopInference()
|
||||||
}
|
}
|
||||||
@ -163,22 +125,25 @@ const ChatInput = () => {
|
|||||||
<div className="relative p-4 pb-2">
|
<div className="relative p-4 pb-2">
|
||||||
<div className="relative flex w-full flex-col">
|
<div className="relative flex w-full flex-col">
|
||||||
{renderPreview(fileUpload)}
|
{renderPreview(fileUpload)}
|
||||||
<TextArea
|
|
||||||
|
<RichTextEditor
|
||||||
className={twMerge(
|
className={twMerge(
|
||||||
'relative max-h-[400px] resize-none pr-20',
|
'relative mb-1 max-h-[400px] resize-none rounded-lg border border-[hsla(var(--app-border))] p-3 pr-20',
|
||||||
|
'focus-within:outline-none focus-visible:outline-0 focus-visible:ring-1 focus-visible:ring-[hsla(var(--primary-bg))] focus-visible:ring-offset-0',
|
||||||
|
'overflow-y-auto',
|
||||||
fileUpload.length && 'rounded-t-none',
|
fileUpload.length && 'rounded-t-none',
|
||||||
experimentalFeature && 'pl-10',
|
experimentalFeature && 'pl-10',
|
||||||
activeSettingInputBox && 'pb-14 pr-16'
|
activeSettingInputBox && 'pb-14 pr-16'
|
||||||
)}
|
)}
|
||||||
spellCheck={spellCheck}
|
spellCheck={spellCheck}
|
||||||
data-testid="txt-input-chat"
|
style={{ height: activeSettingInputBox ? '98px' : '44px' }}
|
||||||
style={{ height: activeSettingInputBox ? '100px' : '40px' }}
|
|
||||||
ref={textareaRef}
|
|
||||||
onKeyDown={onKeyDown}
|
|
||||||
placeholder="Ask me anything"
|
placeholder="Ask me anything"
|
||||||
disabled={stateModel.loading || !activeThread}
|
disabled={stateModel.loading || !activeThread}
|
||||||
value={currentPrompt}
|
/>
|
||||||
onChange={onPromptChange}
|
<TextArea
|
||||||
|
className="absolute inset-0 top-14 h-0 w-0"
|
||||||
|
data-testid="txt-input-chat"
|
||||||
|
onChange={(e) => setCurrentPrompt(e.target.value)}
|
||||||
/>
|
/>
|
||||||
{experimentalFeature && (
|
{experimentalFeature && (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
@ -437,30 +402,6 @@ const ChatInput = () => {
|
|||||||
className="flex-shrink-0 cursor-pointer text-[hsla(var(--text-secondary))]"
|
className="flex-shrink-0 cursor-pointer text-[hsla(var(--text-secondary))]"
|
||||||
/>
|
/>
|
||||||
</Badge>
|
</Badge>
|
||||||
{/* Temporary disable it */}
|
|
||||||
{/* {experimentalFeature && (
|
|
||||||
<Badge
|
|
||||||
className="flex cursor-pointer items-center gap-x-1"
|
|
||||||
theme="secondary"
|
|
||||||
variant={
|
|
||||||
activeTabThreadRightPanel === 'tools' ? 'solid' : 'outline'
|
|
||||||
}
|
|
||||||
onClick={() => {
|
|
||||||
setActiveTabThreadRightPanel('tools')
|
|
||||||
if (matches) {
|
|
||||||
setShowRightPanel(!showRightPanel)
|
|
||||||
} else if (!showRightPanel) {
|
|
||||||
setShowRightPanel(true)
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<ShapesIcon
|
|
||||||
size={16}
|
|
||||||
className="flex-shrink-0 text-[hsla(var(--text-secondary))]"
|
|
||||||
/>
|
|
||||||
<span>Tools</span>
|
|
||||||
</Badge>
|
|
||||||
)} */}
|
|
||||||
</div>
|
</div>
|
||||||
<Button
|
<Button
|
||||||
theme="icon"
|
theme="icon"
|
||||||
|
|||||||
@ -30,7 +30,6 @@ import { spellCheckAtom } from '@/helpers/atoms/Setting.atom'
|
|||||||
import {
|
import {
|
||||||
activeThreadAtom,
|
activeThreadAtom,
|
||||||
getActiveThreadIdAtom,
|
getActiveThreadIdAtom,
|
||||||
waitingToSendMessage,
|
|
||||||
} from '@/helpers/atoms/Thread.atom'
|
} from '@/helpers/atoms/Thread.atom'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
@ -47,7 +46,6 @@ const EditChatInput: React.FC<Props> = ({ message }) => {
|
|||||||
const setMessages = useSetAtom(setConvoMessagesAtom)
|
const setMessages = useSetAtom(setConvoMessagesAtom)
|
||||||
const activeThreadId = useAtomValue(getActiveThreadIdAtom)
|
const activeThreadId = useAtomValue(getActiveThreadIdAtom)
|
||||||
const spellCheck = useAtomValue(spellCheckAtom)
|
const spellCheck = useAtomValue(spellCheckAtom)
|
||||||
const [isWaitingToSend, setIsWaitingToSend] = useAtom(waitingToSendMessage)
|
|
||||||
const textareaRef = useRef<HTMLTextAreaElement>(null)
|
const textareaRef = useRef<HTMLTextAreaElement>(null)
|
||||||
const setEditMessage = useSetAtom(editMessageAtom)
|
const setEditMessage = useSetAtom(editMessageAtom)
|
||||||
const [showDialog, setshowDialog] = useState(false)
|
const [showDialog, setshowDialog] = useState(false)
|
||||||
@ -56,19 +54,6 @@ const EditChatInput: React.FC<Props> = ({ message }) => {
|
|||||||
setEditPrompt(e.target.value)
|
setEditPrompt(e.target.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isWaitingToSend && activeThreadId) {
|
|
||||||
setIsWaitingToSend(false)
|
|
||||||
sendChatMessage(editPrompt)
|
|
||||||
}
|
|
||||||
}, [
|
|
||||||
activeThreadId,
|
|
||||||
isWaitingToSend,
|
|
||||||
editPrompt,
|
|
||||||
setIsWaitingToSend,
|
|
||||||
sendChatMessage,
|
|
||||||
])
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (textareaRef.current) {
|
if (textareaRef.current) {
|
||||||
textareaRef.current.focus()
|
textareaRef.current.focus()
|
||||||
|
|||||||
@ -67,7 +67,7 @@ const SimpleTextMessage: React.FC<ThreadMessage> = (props) => {
|
|||||||
langPrefix: 'hljs',
|
langPrefix: 'hljs',
|
||||||
highlight(code, lang) {
|
highlight(code, lang) {
|
||||||
if (lang === undefined || lang === '') {
|
if (lang === undefined || lang === '') {
|
||||||
return hljs.highlightAuto(code).value
|
return hljs.highlight(code, { language: 'plaintext' }).value
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
return hljs.highlight(code, { language: lang }).value
|
return hljs.highlight(code, { language: lang }).value
|
||||||
@ -276,32 +276,18 @@ const SimpleTextMessage: React.FC<ThreadMessage> = (props) => {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{isUser ? (
|
{editMessage === props.id && (
|
||||||
<>
|
|
||||||
{editMessage === props.id ? (
|
|
||||||
<div>
|
<div>
|
||||||
<EditChatInput message={props} />
|
<EditChatInput message={props} />
|
||||||
</div>
|
</div>
|
||||||
) : (
|
)}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
className={twMerge(
|
className={twMerge(
|
||||||
'message flex flex-col gap-y-2 leading-relaxed',
|
'message max-width-[100%] flex flex-col gap-y-2 overflow-auto leading-relaxed'
|
||||||
isUser ? 'whitespace-pre-wrap break-words' : 'p-4'
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{text}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<div
|
|
||||||
className={twMerge(
|
|
||||||
'message max-width-[100%] flex flex-col gap-y-2 overflow-auto leading-relaxed',
|
|
||||||
isUser && 'whitespace-pre-wrap break-words'
|
|
||||||
)}
|
)}
|
||||||
dangerouslySetInnerHTML={{ __html: parsedText }}
|
dangerouslySetInnerHTML={{ __html: parsedText }}
|
||||||
/>
|
/>
|
||||||
)}
|
|
||||||
</>
|
</>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user