Skip to main content

Python library for LastMile AI API

Project description

LastMile AI Python Library

This library provides access to the LastMile AI API from Python. The code should reflect the same API endpoints documented here: https://lastmileai.dev/docs/api

API Token

This library requires a LastMile AI API Token, which can be obtained from https://lastmileai.dev/settings?page=tokens.

Important note: this library should only be used from a server-side context, where the API key can be securely accessed. Using this library from client-side browser code will expose your private API key!

Installation

pip install lastmileai

Usage

Initialize Library with API Key

This library needs to be configured with your API Token (aka API key) obtained above. You can store the API key in an environment variable or alternative secure storage that can be accessed in your server-side code. For example, to initialize the library with the API key loaded from environment variable:

import os
from lastmileai import LastMile

lastmile = LastMile(api_key=os.environ["LASTMILEAI_API_KEY"])

Completions -- Open AI Models

OpenAI completions are supported out-of the box for ChatGPT and GPT3 models:

completion = lastmile.create_openai_completion(
  completion_params = {
    model: "text-davinci-003",
    prompt: "Your prompt here",
  }
)
completion = lastmile.create_openai_chat_completion(
  completion_params = {
    model: "gpt-3.5-turbo",
    messages: [
      { role: "user", content: "Your prompt here" },
    ],
  }
)

Completions -- Custom Models

completion = lastmile.create_openai_completion(
  completion_params = {
    model: "text-davinci-003",
    prompt: "Your prompt here",
  },
  embedding_collection_id = "clfpqyvpp004npmzgp1d4j4fw"
)

Run tests

After setting LASTMILEAI_API_KEY in your shell environment, run the following:

pip3 install -e .
python3 -m unittest discover test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lastmile-0.0.2.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

lastmile-0.0.2-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file lastmile-0.0.2.tar.gz.

File metadata

  • Download URL: lastmile-0.0.2.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for lastmile-0.0.2.tar.gz
Algorithm Hash digest
SHA256 5930b0b94513746fbf42aa7d7be282588e0d30bc4e078d36a6076c62e1e2b8a0
MD5 6873c9958eeeee3a12e5c0c8b6df1dfe
BLAKE2b-256 6a994222d3d1c1053d829f37f0af9bf5fae36b2fae57628f8b637bb827a7c276

See more details on using hashes here.

File details

Details for the file lastmile-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: lastmile-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for lastmile-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9b7b6551db6ed95fad37e120fc12c3e0fdf902f958b6b68a55d29e37a9db440e
MD5 77677459c7de91b66a02f11c4c654a60
BLAKE2b-256 51c757ab78ab2a47bfa95033490b132230d7dfe5b8f056ef1af1f54480ea8425

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page