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

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.1.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

lastmile-0.0.1-py3-none-any.whl (4.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for lastmile-0.0.1.tar.gz
Algorithm Hash digest
SHA256 b729bea514d17795bd8b67f7303c078032bdd765665c9fb8a2798d5acca93d51
MD5 93906f34f5763e0cefd1a5025fab7794
BLAKE2b-256 57ccab154f0202eb54b076d6f3304b2e771ccdb2890d49668f5873bebb8e988a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for lastmile-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e94e41e74b0b65423df18794ddb45badd6c1481f73aae58892c9df51d5a77c06
MD5 07559b555cb5172f58847c08cab31cd8
BLAKE2b-256 5ee8d1ae5d820c8fab89c69a9fcca8154b41f11bfa1977f06bdea7fa23c62346

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