Skip to main content

Opper Python client

Project description

Opper Python SDK

This is the Opper Python SDK. See below for getting started, and the docs for more information. The SDK has builtin documentation and examples in function docstrings, which should be visible in your code editor as you are using the functions.

Install

pip install opperai

Configuration

Environment variable

  • OPPER_API_KEY environment variable is read by the SDK if no api_key is provided to the Client object.

Using opper

from typing import List

from opperai import Index, Opper, trace
from opperai.types import DocumentIn
from opperai.types.indexes import DocumentIn, RetrievalResponse
from pydantic import BaseModel


class Answer(BaseModel):
    steps: List[str]


class QuestionAndContext(BaseModel):
    question: str
    context: List[RetrievalResponse]


@trace
def answer_question(index: Index, question: str) -> Answer:
    results = index.query(question, 1, None)

    result, response = opper.call(
        name="answer_question",
        instructions="Answer the question and provide the steps to do so",
        input=QuestionAndContext(question=question, context=results),
        output_type=Answer,
    )
    response.span.save_metric("artificial_score", 5)

    return result


@trace
def translate(answer: Answer, language: str) -> str:
    result, _ = opper.call(
        name="translate",
        instructions="Translate the answer to the given language",
        input=answer,
        output_type=Answer,
    )
    return result


qna = [
    {
        "question": "I cannot log in to my account",
        "answer": "Use the reset password feature by clicking on 'Forgot password?' and then follow the instructions from email",
        "id": "1",
    },
    {
        "question": "How can I see my invoices?",
        "answer": "Go to the billing section and click on 'Invoices'",
        "id": "2",
    },
    {
        "question": "How can I add a new user to my account?",
        "answer": "Upgrade account and add the user to your account",
        "id": "3",
    },
]

opper = Opper()


def index_qna(qnas: list[dict]):
    index = opper.indexes.create("qna")

    for qna in qnas:
        index.add(
            DocumentIn(
                key=qna["id"],
                content=f"question: {qna['question']}\nanswer: {qna['answer']}",
                metadata={
                    "id": qna["id"],
                },
            )
        )

    return index


def run():
    index = index_qna(qna)

    question = "How can I see my invoices?"

    with opper.traces.start("answer_question") as trace:
        answer = answer_question(index, question)
        print(answer)


run()

More examples

See examples in our documentation and examples folder.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

opperai-0.26.2.tar.gz (34.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

opperai-0.26.2-py3-none-any.whl (55.4 kB view details)

Uploaded Python 3

File details

Details for the file opperai-0.26.2.tar.gz.

File metadata

  • Download URL: opperai-0.26.2.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for opperai-0.26.2.tar.gz
Algorithm Hash digest
SHA256 422814250ad915e3dfd5902674ae357a6e4c5d37dd5a9b6b9c8446e4b21c2880
MD5 2e0c1f010a4b45e4ba1beee5c06ce6cc
BLAKE2b-256 03d84201791c1dd145d0ede76cb2a3f6d2517d7b748bef9a9e0e24fa18042cde

See more details on using hashes here.

Provenance

The following attestation bundles were made for opperai-0.26.2.tar.gz:

Publisher: publish.yml on opper-ai/opper-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opperai-0.26.2-py3-none-any.whl.

File metadata

  • Download URL: opperai-0.26.2-py3-none-any.whl
  • Upload date:
  • Size: 55.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for opperai-0.26.2-py3-none-any.whl
Algorithm Hash digest
SHA256 633c4458a0ca06f537b5de543eada2ab199afaf8c1e4f4aecfd7b64ac7e8772c
MD5 ea4570f80b6a74e4d7eaf55592aa2380
BLAKE2b-256 e877a65ec94e97819acd640815fedeac3e54acf37aff0477171453d92a5028a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for opperai-0.26.2-py3-none-any.whl:

Publisher: publish.yml on opper-ai/opper-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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