Skip to main content

The vulavula Python SDK provides access to the Vulavula API.

Project description

vulavula

vulavula is a Python client SDK designed to interact with the Vulavula API. It simplifies making requests to endpoints such as transcription, file uploads, sentiment analysis, and entity recognition. The SDK also handles network communications, error handling, and response parsing, providing a friendlier interface for developers.

Features

  • Simple and intuitive API methods for:
    • Transcribing audio files
    • Uploading files
    • Entity recognition
    • Sentiment analysis
    • Embeddings Search
    • Translation
  • Custom error handling
  • Supports Python 3.8 and newer

Installation

You can install the vulavula using pip:

pip install vulavula

For developers using PDM, add it directly to your project:

pdm add vulavula

Usage

Here's a quick example to get you started:

from vulavula import VulavulaClient

# Initialize the client with your API token
client = VulavulaClient("<INSERT_TOKEN>")

Transcribe an audio file

Transcribe an audio file by specifying the file path and optionally providing a webhook URL for asynchronous result delivery:

transcription_result = client.transcribe("path/to/your/audio/file.wav", webhook="<INSERT_URL>", language_code="<INSERT_CODE>",)
#language_code example 'zul' and together with webhook are optional
print("Transcription Submit Success:", transcription_result) #A success message, data is sent to webhook

Inputs:

  • file_path: A string path to the audio file you want to transcribe.
  • webhook: (Optional string) A URL to which the server will send a POST request with the transcription results.
  • language_code: (Optional string) The language code for the uploaded file

Upload a file

Upload audio file to the server and receive an upload ID:

upload_result = client.upload_file('path/to/your/file')
print(upload_result)

Inputs:

  • file_path: The path to the file you wish to upload.

Perform sentiment analysis

Analyze the sentiment of a piece of text:

sentiment_result = client.get_sentiments({'encoded_text': 'Ngijabulile!'})
print(sentiment_result)

Inputs:

  • data: A dictionary with a key encoded_text that contains the text to analyze.

Perform entity recognition on text data

Perform entity recognition to identify named entities within the text, such as people, places, and organizations.

entity_result = client.get_entities({'text': 'President Ramaphosa gaan loop by Emfuleni Municipality.'})
print("Entity Recognition Output:", entity_result)

Inputs:

  • data: A dictionary with a key encoded_text that contains the text for entity recognition.

Intent Classification

Train the model with examples and classify new inputs to determine the intent behind each input sentence.

classification_data = {
    "examples": [
        {"intent": "greeting", "example": "Hello!"},
        {"intent": "greeting", "example": "Hi there!"},
        {"intent": "goodbye", "example": "Goodbye!"},
        {"intent": "goodbye", "example": "See you later!"}
    ],
    "inputs": [
        "Hey, how are you?",
        "I must be going now."
    ]
}
classification_results = client.classify(classification_data)
print("Classification Results:", classification_results)

Inputs:

  • data: A dictionary containing two keys:
    • examples: A list of dictionaries where each dictionary represents a training example with an intent and an example text.
    • inputs: A list of strings, each a new sentence to classify based on the trained model.

Classification Results:

  • The output is a list of dictionaries, each corresponding to an input sentence.
  • Each dictionary contains a list of probabilities, where each item is another dictionary detailing an intent and its associated score (a confidence level).

Knowledge Base

Create a Knowledge Base (Search)

Create a collection of documents for search:

knowledge_base_result = client.create_knowledgebase("<knowledge base name>")
print("Knowledge Base Creation Result:", knowledge_base_result)
Get knowledgebases(Search)
knowledgebases = client.get_knowledgebases()
print("Knowledge Bases:", knowledgebases)
Delete knowledgebase (Search)
delete_result = client.delete_knowledgebase("<knowledgebase id >")
print("Delete Result:", delete_result)
Create Documents (Search)

Upload a file and extract text to create documents in a collection:

result = client.create_documents(
        "<document name>.pdf", 
        "<knowledgebase id >"
    )
print("Upload and Extract Result:", result)
Get uploaded Documents (Search)
result = client.get_documents("<knowledgebase id>")
print(result)
Delete document (Search)
delete_result = client.delete_document("<document id>")
print("Delete Result:", delete_result)
Query (Search)

Perform a search query in a specific language:

result = client.query(knowledgebase_id="2f422c4d-ed93-430a-870e-ce8245397e00",query="active learning",language="en_Us")
print(result)

Translate Text

Translate text from one language to another:

translation_data = {
  "input_text": "Lo musho ubhalwe ngesiZulu.",
  "source_lang": "zul_Latn",
  "target_lang": "eng_Latn"
}
translation_result = client.translate(translation_data)
print("Translation Result:", translation_result)

Upload a file and extract text to create documents in a collection:

Error Handling

This section covers how to handle errors gracefully when using the Vulavula API.

Handling Specific Errors with VulavulaError

The VulavulaError is a custom exception class designed to provide detailed information about errors encountered during API interactions. It includes a human-readable message and a structured JSON object containing additional error details.
Here’s an example of how to handle VulavulaError:

try:
    entity_result = client.get_entities({'text': 'President Ramaphosa gaan loop by Emfuleni Municipality.'})
    print("Entity Recognition Output:", entity_result)
except VulavulaError as e:
    print("An error occurred:", e.message)
    if 'details' in e.error_data:
        print("Error Details:", e.error_data['details'])
    else:
        print("No additional error details are available.")
except Exception as e:
    print("An unexpected error occurred:", str(e))

General Exception Handling

While VulavulaError handles expected API-related errors, your application might encounter other unexpected exceptions. It's important to prepare for these to ensure your application can recover gracefully.

Here's a general approach to handle unexpected exceptions:

try:
    upload_id, response = client.transcribe()
    print("Action Succeeded:", response)
except VulavulaError as e:
    print("Handled VulavulaError:", e.message)
    if 'details' in e.error_data:
        print("Detailed Error Information:", e.error_data['details'])
except Exception as e:
    print("Unhandled Exception:", str(e))

Documentation

For full documentation on using the VulavulaClient, visit the official documentation.

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

vulavula-0.4.3.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

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

vulavula-0.4.3-py3-none-any.whl (19.7 kB view details)

Uploaded Python 3

File details

Details for the file vulavula-0.4.3.tar.gz.

File metadata

  • Download URL: vulavula-0.4.3.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.19.1 CPython/3.11.10 Linux/6.8.0-1014-azure

File hashes

Hashes for vulavula-0.4.3.tar.gz
Algorithm Hash digest
SHA256 1039de4d4cbcb288b643a060805b266c7b58c8675208f778a209843399dfee8a
MD5 702752f18e0b409e7a239f5c62d5f7eb
BLAKE2b-256 d98dc4f00a4e1a50680228c0f49c28fc5a9e2bdc31b3da738a2b109dcf091150

See more details on using hashes here.

File details

Details for the file vulavula-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: vulavula-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.19.1 CPython/3.11.10 Linux/6.8.0-1014-azure

File hashes

Hashes for vulavula-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 97e43abc82c76d8904ceea598bf7692f9b54d31ea195250b75ab20d558e45584
MD5 12db8ab7cac3b8e3e9f612edf17c9034
BLAKE2b-256 0400bad89d8afdab2137cf9f76736129ec7df5bbf833fbe51fe17f41b8ef25a7

See more details on using hashes here.

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