A desktop chatbot interface featuring encryption and custom system prompts
Prerequisites: Node 18 - no .ENV
file
npm i
npm start
Refer to How do I get started using Skyway? below.
Skyway is a desktop chatbot application powered by OpenAI models and APIs.
Skyway currently runs models such as gpt-3.5-turbo
and gpt-4
.
Everyone!
You do not need to know how to code or be technically inclined to use Skyway. If you have a desire to interact with a chatbot effectively and securely, Skyway is for you.
Obtain an API Key from OpenAI. See Is Skyway Free to Use? if you do not have a key.
Next, to install Skyway without using a terminal / command prompt, see the Precompiled Binaries section below. This is the easiest way to install Skyway. If you do not code, this is for you.
To start devloping with Skyway, see Making, Building, and Installing.
Skyway is free to use and modify as you see fit.
In order to chat using Skyway, you must have an API Key from OpenAI. Basic users can expect to pay $2 per month or less. More advanced users may see higher token usage.
For more info see OpenAI Signup | Pricing | Finding your API Key
One Skyway design goal is to encrypt the chats and prompts stored on your computer.
The password you create does not communicate with the internet; it decrypts the data you generate when using Skyway.
- Customization via system prompts and engines
- Potential to develop integrations more securely than through a web service
- Data privacy
Skyway is an Electron app with a React frontend. Electron Forge is used to simplify the make / build process. Electron Store is used for persistent storage on the user's disk.
The UI is built with Material UI 5.
CryptoJS handles encryption. Zustand is used for state management.
Responses are powered by OpenAI chat completions APIs,
on models such as gpt-3.5-turbo
and gpt-4
.
Mac, Windows 10 / 11, and Debian Linux (64bit) are officially supported.
ChromeOS is not officially supported, but many modern Chromebooks and Chromeboxes can install .deb files from the Downloads folder.
Skyway is not a website or a native mobile app. To chat and receive messages, an internet connection must be present.
The ARM64 architecture is officially supported for Windows, Mac and Linux (M1, M2, Raspberry Pi 4, Jetson Nano, etc).
While Skyway does not have active Windows ARM (64bit) support, technical users should be able to make / build for this platform with small modifications to the Electron Forge configuration.
While only Debian (Ubuntu, PopOS, Raspberry Pi OS, etc) Linux builds are officially supported, Skyway can be made / built / installed on most x86 *nix PCs.
Skyway does not provide an API of its own.
Skyway uses axios in the main electron thread to communicate with OpenAI APIs and sends the response to the renderer with IPCHandlers.
This makes Skyway unfit for modification into large-scale projects. OpenAI also places limits on the number of requests you can make per minute per key.
- Intuitive UI with complete keyboard-only support
- No compromises between ease-of-use and inclusion of power tools
- Should not confuse noobs
- Should not hinder pros
- Multiple engines
- Token-Limited (conversational, with memory)
- Amnesia (one-shot, no memory)
- Encrypted chats / system prompts
- Easily exportable chats / system prompts
Go to the Releases section of this repository. Find the version with the 'Latest' tag. Download the file appropriate for your platform.
- Mac
- Darwin .zip file
- After downloading
- Double click to unzip
- Drag app into
Applications
folder - Try to run app
- If app will not run, allow app in system preferences -> security
- Linux
- .deb file
- see Linux installer instructions below
- Windows
- .exe file
- after downloading, double-click to run
- requires node 18.x on x86 Windows, Mac (Intel), and Linux (Debian)
- requires node 18.x on ARM Mac (M1, M2)
- requires node 18.x on ARM Windows
- requires node 16.x on ARM64 Linux (Debian)
- ARM32 Linux not supported
- It is recommended you find a more lightweight project, with a non-web GUI
To install dependencies:
npm install
Make sure you have installed dependencies first:
npm run start
On x86 and ARM Mac:
npm run makeMac
Optionally, on ARM Mac:
npm run makeMacARM
On x86 Windows:
npm run makeWindows
On x86 Linux (Debian):
npm run makeLinux
On ARM Linux (Debian):
npm run makeLinuxARM
Navigate to the out/make
folder from the root of the project.
Inside make
will be another folder based on the platform for which Skyway was built.
Navigate inside that folder, and navigate again inside the next folder.
You should be two levels down from make
.
- Click the .exe file to begin the install process. If Skyway was already installed, it will be updated.
- Unzip the zip file
- Drag the unzipped file into the
Applications
folder - Launch the program from the Applications folder
or press
CMD
+spacebar
- Optionally, Skyway can be dragged or locked to the dock for convenience
- Use Eddy or "Software Store" install the .deb with a GUI
- or
- In terminal, in the folder containing the .deb, run
sudo dpkg -i DEB_PACKAGE
and replaceDEB_PACKAGE
with the name of the .deb file
See the Skyway Code of Conduct.
If you wish to write issues or develop features for Skyway, see here!
- 0xbenc - maintainer