Skip to content

leptonai/examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lepton Examples

This repository contains a collection of example photons built with the Lepton AI sdk.

Feel free to modify and use these examples as a starting point for your own applications.

The example repo is organized into the following directories:

  • getting-started: A collection of simple examples that demonstrate the basics of building and running simple photons, which are light-weight, single-file applications.
  • advanced: A collection of more complex examples that demonstrate how to build and run real-world applications, such as LLMs, image search, object segmentation, and more.

For the full documentation, please visit https://lepton.ai/docs.

Prerequisite

Note: we are currently in closed beta. All examples in this folder are runnable locally. To run on the Lepton cloud, join the waiting list at https://lepton.ai/.

Install the lepton sdk via (the -U option ensures the most recent version is installed):

pip install -U leptonai

For many examples in the advanced folder, there are dependencies needed by the specific algorithms. It is recommended that you use virtual environments to not pollute your daily environment. For example, if you use conda, you can do:

conda create -n myenvironment python=3.10
conda activate myenvironment

Running examples

To run the examples in the respective folders, there are usually three ways:

  • Directly invoking the python code to run things locally, for example:
python getting-started/counter/counter.py
# runs on local server at port 8080 if not occupied
  • Create a photon and then run it locally with the lep CLI command, for example:
lep photon create -n sam -m advanced/segment-anything/sam.py
lep photon run -n sam --local
  • Create a photon like the one above, and run it on the cloud:
lep login # logs into the lepton cloud
lep photon push -n sam # pushes the photon to the cloud
lep photon run -n sam --resource-shape gpu.t4 # run it

For individual examples, refer to their source files for self-explanatory comments.

Using clients

In all three cases, you can use the python client to access the deployment via:

from leptonai.client import Client, local
c = Client(local(port=8080))

or

from leptonai.client import Client
c = Client("myworkspaceid", "sam", token="**mytoken**")

For example, for the counter example running locally, you can interact with the photon in python:

>> from leptonai.client import Client, local
>> c = Client(local(port=8080))
>> print(c.add.__doc__)
Add

Automatically inferred parameters from openapi:

Input Schema (*=required):
  x*: integer

Output Schema:
  output: integer
>> c.add(x=10)
10
>> c.add(x=2)
12

For more details, check out the Quickstart, Walkthrough, and the client documentation.

Notes on huggingface access

Sometimes, you might encounter errors accessing huggingface models, such as the following message when accessing llama2:

Failed to create photon: 401 Client Error. (Request ID: Root=xxxxxxx)

Cannot access gated repo for url https://huggingface.co/api/models/meta-llama/Llama-2-7b-hf.
Repo model meta-llama/Llama-2-7b-hf is gated. You must be authenticated to access it.

This means that you did not have access to the repo, or you did not set up huggingface access tokens. We'll detail how to do so below.

Get access to the huggingface repo.

Go to the corresponding huggingface repo, and accept the terms and conditions of the corresponding repository. For example, for llama2, the corresponding link is https://huggingface.co/meta-llama/Llama-2-7b-hf.

Set up credentials to access huggingface

Your credential to access huggingface can be found online at https://huggingface.co/settings/tokens.

If you are running photons locally, you can do one of the following:

  • set the token as an environmental variable, with export HUGGING_FACE_HUB_TOKEN=your_token_here.
  • or, in your python environment, run the following command and login. Huggingface will store the credential in the local cache, usually .huggingface/token, for repeated usage:
import huggingface_hub
huggingface_hub.login()

If you are running on the Lepton cloud remotely, the easiest approach is to use the secret feature of Lepton. You can safely store the huggingface token as a secret via CLI:

lep secret create -n HUGGING_FACE_HUB_TOKEN -v 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

(Don't worry, the above token is only an example and isn't active.)

You can verify the secret exists with lep secret list:

>> lep secret list
               Secrets               
┏━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ID                     ┃ Value    ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ HUGGING_FACE_HUB_TOKEN │ (hidden) │
└────────────────────────┴──────────┘

And when you launch a photon, add --secret:

lep photon run -n myphoton --secret HUGGING_FACE_HUB_TOKEN

For more detailed information, check out the following resources:

Contributing

We love your feedback! If you would like to suggest example use cases, please open an issue. If you would like to contribute an example, kindly create a subfolder under getting-started or advanced, and submit a pull request.