From af6e16a9452ef4191fed0b594534862cb961294a Mon Sep 17 00:00:00 2001 From: akshay-anyscale <122416226+akshay-anyscale@users.noreply.github.com> Date: Tue, 6 Jan 2026 15:54:56 -0800 Subject: [PATCH] Delete templates/getting-started directory --- templates/getting-started/README.ipynb | 67 -------------------------- templates/getting-started/README.md | 32 ------------ 2 files changed, 99 deletions(-) delete mode 100644 templates/getting-started/README.ipynb delete mode 100644 templates/getting-started/README.md diff --git a/templates/getting-started/README.ipynb b/templates/getting-started/README.ipynb deleted file mode 100644 index 42541ec3e..000000000 --- a/templates/getting-started/README.ipynb +++ /dev/null @@ -1,67 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Welcome to Anyscale\n", - "\n", - "Welcome to your first Workspace - a powerful dev environment designed for making developing distributed AI applications a breeze. This is not just any dev box, it can seamlessly transition to a dev cluster without any configuration hassles.\n", - "\n", - "Let's dive in with a simple \"Hello World\" example." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import ray\n", - "import time\n", - "\n", - "@ray.remote(num_cpus=1)\n", - "def hello_world(sleep=0):\n", - " time.sleep(sleep)\n", - " return \"Hello World!\"\n", - "\n", - "print(ray.get(hello_world.remote()))\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Instant Scaling\n", - "\n", - "Now, let's witness the power of Anyscale's instant scaling. With just a few lines of code, you can scale your applications horizontally, leveraging the distributed computing of [Ray](https://www.ray.io/).\n", - "\n", - "Let's scale up!" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "futures = [hello_world.remote(sleep=5) for x in range(30)]\n", - "results = ray.get(futures)\n", - "print(\"Success!\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "name": "python", - "version": "3.8.9" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/templates/getting-started/README.md b/templates/getting-started/README.md deleted file mode 100644 index 5748bf0ef..000000000 --- a/templates/getting-started/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# Welcome to Anyscale - -Welcome to your first Workspace - a powerful dev environment designed for making developing distributed AI applications a breeze. This is not just any dev box, it can seamlessly transition to a dev cluster without any configuration hassles. - -Let's dive in with a simple "Hello World" example. - - -```python -import ray -import time - -@ray.remote(num_cpus=1) -def hello_world(sleep=0): - time.sleep(sleep) - return "Hello World!" - -print(ray.get(hello_world.remote())) - -``` - -## Instant Scaling - -Now, let's witness the power of Anyscale's instant scaling. With just a few lines of code, you can scale your applications horizontally, leveraging the distributed computing of [Ray](https://www.ray.io/). - -Let's scale up! - - -```python -futures = [hello_world.remote(sleep=5) for x in range(30)] -results = ray.get(futures) -print("Success!") -```