[ENG] Runyour AI
HOMEDISCORD
  • Direct Link to runyourAI
  • 🎉Welcome to Runyour AI
  • 🌠What's New
    • v1.7.2 (2024.10.21)
    • v1.7.0 (2024.10.07)
    • v1.6.2 (2024.09.24)
    • v1.6 (2024.08.20)
    • v1.5 (2024.07.11)
    • v1.4 (2024.06.17)
    • v1.3 (2024.05.29)
    • v1.2 (2024.04.17)
    • v1.1 (2024.04.01)
    • v1.0 (2024.03.04)
  • ❓FAQ
  • ☎️Contact
  • [Start runyour AI]
    • Create an Account
    • Manage an Account
  • [GPU Cloud]
    • Machine List
    • Machine Rental
      • Hourly Plan
        • Recharge Points
        • Hourly Plan Machine Rent
        • Hourly Plan Machine Stop and Return
      • Monthly Subscription Plan Machine
        • Card Register
        • Monthly Subscription Plan Rent
        • Monthly Subscription Plan Stop and Return
  • [Dev Cloud]
    • How to Use
      • Machine Rental
      • Machine Usage
      • Machine Return
  • [Reserved Cloud]
    • How to Use
      • Request a Quote
      • Machine Usage
  • [Utilize Storage]
    • Storage List
    • Hourly Storage
      • Create an Hourly Storage
      • Link an Hourly Storage
    • Long term Storage
      • Create a long-term Storage
      • Link a long-term Storage
  • [Tutorial]
    • Remote Access via SSH (common)
    • Using Stable-diffusion
    • Using Jupyter AI Labs
    • File Transfer Between Machines-Users
    • Handling Errors When Connecting to Machines
    • Fixing PEM Key File Permission Issues
  • [Register Machines]
    • Machine Registration Requirements
    • Register a Machine
    • Manage a Machine
    • Profit Withdrawal
  • [Terms and Conditions]
    • Terms and Conditions
      • Terms_Consumers
      • Terms_Suppliers
      • Privacy Policy
Powered by GitBook
On this page
  • Step 1. Machine Rental / Template Selection
  • Step 2. Access to Jupyter Lab WebUI
  • Step 3. Utilize OpenAI API using Jupyter AI
  • 1. Create Jupyter Notebook to use
  • 2. Enter the following Code on the notebook file.
  • 3. Enter the Key issued by OpenAI.
  • 4. You can use the Chat GPT by using the following code.
  1. [Tutorial]

Using Jupyter AI Labs

Explore JupyterAI with ease using the guide!

PreviousUsing Stable-diffusionNextFile Transfer Between Machines-Users

Last updated 10 months ago

What is Jupyter AI?

Jupyter AI is an extension program that provides an environment in which AI can be easily utilized within Jupyter notebooks.

What can you do with Jupyter AI?

✔️ Generate code using generative AI models within Jupyter notebook kernels.

✔️ Chat with generative AI using a chat UI within Jupyter Lab.

✔️ Utilize various generative models including OpenAI, Hugging Face, Gemini, and more.

Try out Jupyter AI right now using the templates provided by runyour AI!


Step 1. Machine Rental / Template Selection

  • When you select your desired machine from the GPU Cloud list, you will proceed to the template selection step. Choose the jupyter-AI-Labs template and click the rent button at the top.

  • You can check the rented machine on My Page > Dashboard.


Step 2. Access to Jupyter Lab WebUI

When you click the machine you rented, you can check the SSH access feature and Web UI direct access feature.

  • Among the two ways of accessing, click the 'jupyterLabs Access the web' button and directly access to the Web UI.

Step 3. Utilize OpenAI API using Jupyter AI

1. Create Jupyter Notebook to use

Click the Notebook > Python 3 button on the screen and create a new notebook file.

2. Enter the following Code on the notebook file.

%reload_ext jupyter_ai

3. Enter the Key issued by OpenAI.

import os
os.environ['OPENAI_API_KEY']='enter the Key issued by OpenAI'

4. You can use the Chat GPT by using the following code.

The generated results may vary depending on ChatGPT's responses.

  1. Line Graph Example

%%ai chatgpt --format code
Demonstrate how to plot a line graph based on a pandas dataset, including sample data
  • Result

  1. Scatter Graph Example

%%ai chatgpt --format code
Demonstrate how to plot a scatter graph based on a pandas dataset, including sample data
  • Result

  • Result

(Please refer to the '' about the SSH access.)

Remote Access via SSH