Skip to main content

Client for Konverso Kbot

Project description

README

This package contains utilities which you may use to easily interact with Konverso Kbot application.

In particular, you may:

  • Invoke some of the APIs to view / update / create Kbot configuration objects such as Intents, Message, etc.
  • Collect metrics showing how the bot is performing.
  • Create a Conversation and interact with it, sending message and getting responses

See also

Access Konverso Support

You may contact us:

Installation

You may use pip3 to install the software on your Kbot instance:

First Navigate to your work-area and then invoke:

pip3 install -e git+https://konverso@bitbucket.org/konversoai/kbot-py-client.git#egg=kbot-py-client

Usage

You would typically first need to login and then invoke some of the API wrapped methods.

Login

import json

from kbot_client import Client

Using user / password

cli = Client("mybot.konverso.ai")
cli.login("myuser", "mysecretpassword")

The API Key may be created for a given user, with relevant permissions, from the Configuration / Users & Roles / Users / Accounts panel. Create an account of type "Local"

Using and api key

cli = Client("mybot.konverso.ai", api_key="xxxxxxxxxxxxxxxxxxx")

The API Key may be created for a given user, with relevant permissions, from the Configuration / Users & Roles / Users / Accounts panel. Create an account of type "API Key"

Collect metrics

Once authenticated, you can for example retrieve useful usage metrics, these can be used by a Monitoring application or for some business intelligence rendering:

metrics = cli.metric().json()
print("Collected metrics:")
print(json.dumps(metrics, indent=4))

Invoke a Workflow and retrieve result

This is the most powerful mechanism, that let you invoke any business and processing logic in a workflow, leveraging all the capabilities of our platform, and retrieve the result

r = client.request("post",
    "workflow/execute",
    {
        "name": "Test API Workflow",
        "keywords": {
            "var1": "abc"
        },
        "result": ["response"]
    }
)
print(r.json())

Invoke a search

You may invoke a search on any of the configured Search Contexts Note the search context UUID passed in the URL, which you may retrieve from our Search Context portal.

r = client.request("post", "searchcontext/234923-235-sjdhfs-kdjf/search",
    {
        "sentence": "how to create a classifier",
        "num_results": 20,
        #"variables": {'kbs': {'value': ['Confluence_Security_KSEC']}}
    }
)

Retrieve object details

You may retrieve list of defined objects. Note that only objects visibled to the logged in users will be returned.

Here is a sample code that simply checks for a few objects existance:

Get list of objects and check if object with name is present in response

for unit, name in (('intention' ,'Create ticket'),
                   ('knowledge_base', 'faq'),
                   ('workflow', 'Transfer to Agent')):
	print(f"Get list of '{unit}'")
	objs = cli.unit(unit)
	if objs:
    	# Create dict with
    	# - key : object name
    	# - value : object json data
    	data = {obj['name']: obj for obj in objs}
    	if name in data:
        	print(f"'{name}' is present")
    	else:
        	print(f"'{name}' is not present")
	else:
    	print("Get no data")

Conversation test

In this example, we create a conversation between the logged in user and the bot and then sends a sentence, and check if we get some expected text in the response. This could for example be the basis of automated testing of the bot

	r = cli.conversation(username='bot')
	if r.status_code == 201:
	    cid = r.json().get('id')
	    print("Created conversation with id '%s'" %(cid,))

	    response = cli.message(cid, 'hello')

	    # Process bot response
	    if response:
	        for resp in response:
	            for message in resp.get('message', []):
	                responses.append(message.get('value', '')) # dict {message type: message value}
	                resp_message = '\n'.join(responses)
                    print("Received response: ", resp_message)
                    if 'I am kbot' in resp_message:
                        print("Excepted response found")
                        break
                else:
                    print("Did not receive the expected response")
	    else:
	        print("Did not receive any response")
	else:
	    print("Could not create conversation due to: ", r.text)

Uploading one file to kbot

Prerequisites

  • A local file that you wish to send
  • The UUID of the folder that will receive the files you want to upload

Code sample

        current_top_folder = "uuid-of-a-folder"
        filepath = "/tmp/test.pdf"
        filename = os.path.basename(filepath)
        
        # Upload to remote filemanager
        with open(filepath, "rb") as fd:
            files = {
                        "upload_files": fd
                    }
            params= {
                        "override": False
                    }
            data = {
                        "folder": current_top_folder,
                        "name": file_name,
                    }
            response = self.client.post_file("attachment",
                                                     data=data,
                                                     params=params,
                                                     files=files)

Uploading a batch of files to the file manager

Prerequisites

  • An API key
  • The UUID of the folder that will receive the files you want to upload

Code sample

In this example, we simply upload the content of a directory to a folder in the file manager.

    from kbot_client import Client
    from kbot_client.folder_sync import FolderSync

    client = Client("mybot.konverso.ai", api_key="17ebXXXXXXXXXXXXXXXXXXXXX")

    syncer = FolderSync(client)
    syncer.sync("/tmp/my_source_folder/", "1831f-XXXXXXXXXXXXXXXXXXXXXXX")
    print("Syncing is done :)")

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

kbot_py_client-2.0.5.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

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

kbot_py_client-2.0.5-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file kbot_py_client-2.0.5.tar.gz.

File metadata

  • Download URL: kbot_py_client-2.0.5.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.5

File hashes

Hashes for kbot_py_client-2.0.5.tar.gz
Algorithm Hash digest
SHA256 2f9bee90148af76545c6297d5d30bd37159c15b7775c455fe9bd48e4ad501864
MD5 75d3cbacd5e82170ae09e824e980a86a
BLAKE2b-256 75627243b66ca2084e752d0ac5311873cf2e4efb86d2c52a548c5c932b470513

See more details on using hashes here.

File details

Details for the file kbot_py_client-2.0.5-py3-none-any.whl.

File metadata

  • Download URL: kbot_py_client-2.0.5-py3-none-any.whl
  • Upload date:
  • Size: 15.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.5

File hashes

Hashes for kbot_py_client-2.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4c3bacfeb6126a58596f4ca5c706aad296e00857f2588c1fd784b7c05e4a3cf7
MD5 467c5f47629f5858218ae28427dfd1d2
BLAKE2b-256 466330cf52669fbef132a60a0b5ac7b67d23d8f3c458a7b98d27b6094b082041

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