Skip to content

Commit

Permalink
refactor: hyperchat v2
Browse files Browse the repository at this point in the history
  • Loading branch information
YanceyOfficial committed Oct 18, 2024
1 parent f22aa7c commit b615f09
Show file tree
Hide file tree
Showing 39 changed files with 1,671 additions and 399 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)](https://github.com/HyperChatBot/hyperchat/pulls)
[![Node](https://img.shields.io/badge/Node.js-%3E%3D18.19.0-green.svg)](https://nodejs.org/en/)
[![Rust](https://img.shields.io/badge/Rust-%3E%3D1.81.0-orange.svg)](https://nodejs.org/en/)
[![Version](https://img.shields.io/badge/Version-v1.0.5-blue.svg)](https://nodejs.org/en/)
[![Version](https://img.shields.io/badge/Version-v2.0.0-blue.svg)](https://nodejs.org/en/)
[![Twitter](https://img.shields.io/badge/Twitter-Connect-brightgreen?logo=twitter)](https://twitter/YanceyOfficial)

## Introduction
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "hyperchat",
"private": true,
"version": "1.0.5",
"version": "2.0.0",
"type": "module",
"description": "ChatGPT AI Bot.",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prettier": "prettier ./.prettierrc -w ./src --fix",
"prettier": "prettier ./.prettierrc -w ./src",
"lint": "eslint --cache --fix",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
Expand All @@ -21,6 +21,7 @@
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@heroicons/react": "^2.1.5",
"@lottiefiles/react-lottie-player": "^3.5.4",
"@mui/material": "^6.1.2",
"@tauri-apps/api": "^2.0.2",
"@tauri-apps/plugin-fs": "~2.0.0",
Expand All @@ -37,6 +38,7 @@
"immer": "^10.1.1",
"js-tiktoken": "^1.0.15",
"luxon": "^3.5.0",
"microsoft-cognitiveservices-speech-sdk": "^1.40.0",
"notistack": "^3.0.1",
"openai": "^4.67.2",
"react": "^18.3.1",
Expand Down
123 changes: 121 additions & 2 deletions pnpm-lock.yaml

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

8 changes: 8 additions & 0 deletions src-tauri/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSMicrophoneUsageDescription</key>
<string>Request microphone access for WebRTC</string>
</dict>
</plist>
Loading

0 comments on commit b615f09

Please sign in to comment.