Installation Setup

Hyperspace A.I

Incentivized Node

The world’s first decentralized AI network for Mistral7B-based model.

Download the Alpha Release: The Hyperspace node is available for Windows, Linux, and macOS users in its early alpha stages. Embark on this pioneering journey by downloading the app and be among the first to experience the forefront of decentralized AI computing.

As an alpha version, the app is in its initial development phase and we welcome user feedback to enhance its functionality.

Hyperspace Node Setup

➡️ Method 1. Browser Node

  • Run using browser if you have an idle PC or during the times you're working on your computer

  • You might obtain uptime for multipliers, I'm running it 24/7

  • You can run it on a windows server (if you have a VPS with windows installed on for other extension nodes)

2. Switch the red button to green

3. Check your point

  • You receive points based on your node's uptime, liveness multiplier, and your system specification's tier

  • You initially get Tier-5 but your tier and multiplier will increase over time as your node stays online with good performance

4. Save your PrivateKey | You can import it later

Make sure to keep the red switch turned on because it can sometimes disconnect, possibly because of network issues

➡️ Method 2. Download App (Windows, Linux, Mac)

You can choose GPU or CPU version

2.Download a model and toggle on the red button

  • You can find your PrivateKey file key.pmf in this directory C:\Users\XXX\AppData\Roaming\hyperspace

➡️ Method 3. Linux CLI Node (VPS)

  • I'm receiving points on my VPS by going through the following guide but I will update the repo if it was needed to enhance it

  • You can also check out Official repository for more commands and info

Install

curl https://download.hyper.space/api/install | bash

source /root/.bashrc

Start your node

# Create a screen ro run it in background for later
screen -S hyperspace

# Run node
aios-cli start
  • To continue, minimize your screen using CTRL+A+D or Open second terminal

  • Turn back to screen: screen -r hyperspace

Config Node

# Download a required model
aios-cli models add hf:TheBloke/phi-2-GGUF:phi-2.Q4_K_M.gguf
# Import your private key - Create a my.pem file using nano .pem and input a privatekey (You can get a privatekey from browser version)
aios-cli hive import-keys ./my.pem
# Set those keys as the preferred keys for this session
aios-cli hive login
# Make sure the model is registered
aios-cli hive connect
aios-cli hive select-tier 5

You can Upgrade to Tier-3 to receive 2x points

aios-cli hive select-tier 3

Check Points

# To check your current multiplier and points
aios-cli hive points

Usefull commands

# Shortcut for Start, Login and Connect to Hive commands, if you've stopped you node
aios-cli start --connect
# Update node
aios-cli version
# Stop node
aios-cli kill

Last updated