Skip to main content

Python client for interacting with AnswerRocket's skill API

Project description

AnswerRocket Skill API Client

This is a client library for interacting with an AnswerRocket instance.

Installation

pip install answerrocket-client

Use

from answer_rocket import AnswerRocketClient
arc = AnswerRocketClient(url='https://your-answerrocket-instance.com', token='<your_api_token>')

# test that the config is valid
arc.can_connect()

# Get a resource file.  When running in an AnswerRocket instance, this call will fetch a customized version of the resource if one has been created.
import json
some_resource = json.loads(arc.config.get_artifact('path/to/my/file.json'))

# to run SQL, get the database ID from an AnswerRocket environment
table_name = "my_table"
sql = "SELECT sum(my_measure) from "+table_name
database_id = "my_database_id"

execute_sql_query_result = arc.data.execute_sql_query(database_id, sql, 100)

if execute_sql_query_result.success:
    print(execute_sql_query_result.df)    
else:
    print(execute_sql_query_result.error)
    print(execute_sql_query_result.code)

# language model calls use the configured settings from the connected Max instance (except for the secret key)
success, model_reply = arc.chat.completion(messages = "hakuna")

if success:
    # the reply is the full value of the LLM's return object
    reply = model_reply["choices"][0]["message"]["content"]
    print(f"** {reply} **")
else:
    # error reply is a description of the exception
    print("Error: "+model_reply)

# chat conversations and streaming replies are supported
messages = [
    { "role":"system",
      "content":"You are an efficient assistant helping a business user answer questions about data."},
    { "role":"user",
      "content":"Can you tell me the average of 150,12,200,54,24 and 32?  are any of these outliers?  Explain why."}
]

def display_streaming_result(str):
    print(str,end="", flush=True)

success, reply = arc.chat.completion(messages = messages, stream_callback=display_streaming_result)

Notes:

  • both the token and instance URL can be provided via the AR_TOKEN and AR_URL env vars instead, respectively. This is recommended to avoid accidentally committing a dev api token in your skill code. API token is available through the AnswerRocket UI for authenticated users.
  • when running outside of an AnswerRocket installation such as during development, make sure the openai key is set before importing answer_rocket, like os.environ['OPENAI_API_KEY'] = openai_completion_key. Get this key from OpenAI.

Working on the SDK

Setup

This repository contains a .envrc file for use with direnv. With that installed you should have a separate python interpreter that direnv's hook will activate for you when you cd into this repository.

Once you have direnv set up and activating inside the repo, just make to install dev dependencies and get started.

Finding things in the codebase

The main point of contact with users of this sdk is AnswerRocketClient in answer_rocket/client.py. That is, it is what users will import and initialize. Different categories of utilities can be grouped into modules in whatever way is most convenient, but they should be exposed via the client rather than through a separate import so that utilities for authentication, etc., can be reused.

The client hits an sdk-specific GraphQL API on its target AnswerRocket server. There is a graphql/schema.py with generated python types for what queries are available. When needed it can be regenerated with the generate-gql-schema makefile target. See the Makefile for details.

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

answerrocket_client-0.2.107.tar.gz (67.7 kB view details)

Uploaded Source

Built Distribution

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

answerrocket_client-0.2.107-py3-none-any.whl (69.4 kB view details)

Uploaded Python 3

File details

Details for the file answerrocket_client-0.2.107.tar.gz.

File metadata

  • Download URL: answerrocket_client-0.2.107.tar.gz
  • Upload date:
  • Size: 67.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for answerrocket_client-0.2.107.tar.gz
Algorithm Hash digest
SHA256 ae95f6f2e3fc1d6dd656488cf18a033d9580433ea9398b199fb3add8d92701f5
MD5 8f545769b5da03a934c5ba6796f8cdac
BLAKE2b-256 9e1f4da6fb2b5b44b0c7ce95bb1cc8cbd68a8d0f4fe8114f7bb5cef1b825dbe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for answerrocket_client-0.2.107.tar.gz:

Publisher: publish-to-pypi.yml on answerrocket/answerrocket-python-client

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

File details

Details for the file answerrocket_client-0.2.107-py3-none-any.whl.

File metadata

File hashes

Hashes for answerrocket_client-0.2.107-py3-none-any.whl
Algorithm Hash digest
SHA256 7386e5bcc57b0da7334e7a0cfc71ddaccd0cf95952eb8dfb82810c165ba8cc3c
MD5 a5d77562b0542ac82336a2c3566f3dab
BLAKE2b-256 196edb3e7962d1d4db864f8588820acd5bfcd5cdb8b67a4c68fb318f6c873fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for answerrocket_client-0.2.107-py3-none-any.whl:

Publisher: publish-to-pypi.yml on answerrocket/answerrocket-python-client

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