Client to interact with the Pythia API
Project description
pythia-client
This is the client make it easier to interact with our internal Pythia API.
This is still a work in progress
Usage
- Create a connection with client object
from pythia_client.client import APIClient
client = APIClient(url="http://localhost:8000", api_key="api-key")
- Query the knowledge base (ask a question)
filters = {
"operator": "AND",
"conditions": [
{
"field": "meta.source",
"operator": "==",
"value": "Salesforce",
},
],
}
query_response = client.query("Hey how are you", filters=filters)
query_response.model_dump()
- Index new files in the knowledge base
index_response = client.index_files(["path/to/file.pdf"], meta=[{"source": "Salesforce"}], indexation_mode="unstructured")
index_response.model_dump()
# OR
index_response = client.index_files([("file.pdf", file)], meta=[{"source": "Salesforce"}], indexation_mode="unstructured")
index_response.model_dump()
- List documents in the knowledge base (based on filters)
filters = {
"operator": "AND",
"conditions": [
{
"field": "meta.source",
"operator": "==",
"value": "Salesforce",
},
],
}
list_response = client.list_docs(filters=filters)
list_response.model_dump()
- Remove documents from the knowledge base
filters = {
"operator": "AND",
"conditions": [
{
"field": "meta.source",
"operator": "==",
"value": "Salesforce",
},
],
}
remove_response = client.remove_docs(filters=filters)
remove_response.model_dump()
- Get a presigned S3 url to the original document
get_doc_response = client.get_doc_url("s3fd_sample.pdf", page=2)
s3_url = get_doc_response.url
- Extract JSON data from unstructured test.
Currently used to showcase the Email2Case feature.
extract_response = client.extract_json_data("Hello I want to modify the delivery date of order FR73681920")
extract_response.model_dump()
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
pythia_client-0.0.11.tar.gz
(270.1 kB
view details)
Built Distribution
File details
Details for the file pythia_client-0.0.11.tar.gz
.
File metadata
- Download URL: pythia_client-0.0.11.tar.gz
- Upload date:
- Size: 270.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb52dcc86c3adc84200dc5df4c8c21c0e25d3df05b07a5f48ceb96547848d5d2 |
|
MD5 | e27f61b5d20c933c60c5ca75b679599d |
|
BLAKE2b-256 | 28760b48a63ea27ad96012054229791fd24727dd739aeb9015d21ab75d150b29 |
File details
Details for the file pythia_client-0.0.11-py3-none-any.whl
.
File metadata
- Download URL: pythia_client-0.0.11-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15c0a7dd72d19ee265f7931e4bdae86d198328f33afc287e2c0d3fb83297f511 |
|
MD5 | f07bdbdeddded0aca658d4b36bfdc084 |
|
BLAKE2b-256 | 9f1b2b11633f7966c4a7758f69c1a7a52768cf1efd7c26374566a82defbed797 |