Skip to main content

A client for the MARA conversational agent for cheminformatics.

Project description

mara client module

This package provides a Python interface for the MARA conversational agent for cheminformatics.

Installation

pip install mara-client

Usage

To use the MARA client, you need to have an API key. You can create one at https://mara.nanome.ai/settings/api-keys.

MARA chats are created using the new_chat method, or retrieved with the get_chat method of the client. You can then interact with the chat using the prompt method. The prompt method returns a ChatResult object, which contains the response from MARA, intermediate messages such as tool runs, and any files that were generated during the conversation. You can download these files using the download_file method of the chat. Chat will be visible as conversations in the MARA web interface, and can be deleted using the delete method.

import mara_client

API_KEY = "..."
URL = "https://mara.example.com" # optional
client = mara.Client(API_KEY, URL)

chat = client.new_chat()
# or, chat = client.get_chat("chat_id")

result = chat.prompt('Download SDF of aspirin')
print(result.response)
# The SDF file for the compound aspirin has been downloaded successfully. You can access it [here](CHEMBL25.sdf).
print(result.files)
# [ChatFile(id='...', name='CHEMBL25.sdf', size=1203, date=...)]

chat.files.download('CHEMBL25.sdf', 'aspirin.sdf')
# downloaded as aspirin.sdf in current working directory

result = chat.prompt('Calculate chem props')
print(result.response)
# The chemical properties of the compound with ChEMBL ID CHEMBL25 (aspirin) are as follows:
#
# | Property | Value |
# | --- | --- |
# | Molecular Weight (MW) | 180.159 |
# | LogP | 1.310 |
# | Total Polar Surface Area (TPSA) | 63.600 |
# | Hydrogen Bond Acceptors (HBA) | 3 |
# | Hydrogen Bond Donors (HBD) | 1 |
# | Rotatable Bonds (RB) | 2 |

chat.delete()
# remove chat from history, delete associated files and data

Data Tables

The chat object contains a datatables attribute for working with DataTables.

# Create a data table from already uploaded file
csv_file = './example.csv'
datatable: DataTable = chat.datatables.create(csv_file)

# List all data tables
table_list = chat.datatables.list()

# Generate a new DataTable based on Chat context
chat.datatables.generate()

# Run prompt to update/query a datatable
dt_id = datatable.id
chat.datatables.prompt(dt_id, prompt)

# Retrieve a datatable
chat.datatables.get(dt_id)

# View datatable as a pandas Dataframe
df = datatable.dataframe

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

mara_client-0.14.4.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

mara_client-0.14.4-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file mara_client-0.14.4.tar.gz.

File metadata

  • Download URL: mara_client-0.14.4.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mara_client-0.14.4.tar.gz
Algorithm Hash digest
SHA256 4403e188e808d4745ad6bb4efb4b0425549f9c9a255c29e022333b1db483fe0c
MD5 85c7468202558b94019a0e61da056599
BLAKE2b-256 dcc6e4eae36264046e3c763539e56ae00bbb69908a5ff5aed34c6ba2f60febac

See more details on using hashes here.

File details

Details for the file mara_client-0.14.4-py3-none-any.whl.

File metadata

File hashes

Hashes for mara_client-0.14.4-py3-none-any.whl
Algorithm Hash digest
SHA256 3c1bb2346003a3c3c881d5339eac611c066ca319b0c6c11a6f732f6e2411e754
MD5 5464c9ad1c4c5e48bb6267e7f683c025
BLAKE2b-256 6e7a20d368ad998b675505bb0ab2f687a341734bc2e0ae7a1ee70c2d90fd549a

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