Skip to content

Latest commit

History

History
51 lines (35 loc) 路 2.67 KB

File metadata and controls

51 lines (35 loc) 路 2.67 KB

馃搶 Examples

This repository contains a list of notebooks examples on how to use the sdk and or the cli. To use the notebooks in this repository, you need to set up your environment. Follow these steps to get started:

  1. Clone the repository to your local machine:

    git clone https://github.com/wiseaidotdev/autogpt.git
  2. Install the required dependencies and libraries. Make sure you have Rust, Jupyter Notebook, and evcxr_jupyter installed on your system.

    # Install a Rust toolchain (e.g. nightly):
    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
    
    # Create a python env
    python3 -m venv .venv
    
    # Source the python env
    source .venv/bin/activate
    
    # Install Jupyter Notebook
    pip install notebook
    
    # Install evcxr_jupyter
    cargo install evcxr_jupyter
    evcxr_jupyter --install
  3. Navigate to the cloned repository and build the project:

    cd autogpt
    cargo build --release --all-features
  4. Navigate to the examples directory and start Jupyter Notebook:

    cd examples
    jupyter notebook
  5. Access the notebooks in your web browser by clicking on the notebook file you want to explore.

ID Example Open on GitHub Launch on Binder Launch on Colab
1 Basic Github Binder Open In Colab