Pre-release
This release is a pre-release and may not be stable for production use.
Padacioso
A lightweight, dead-simple intent parser
Built on top of simplematch, inspired by Padaos
Example
from padacioso import IntentContainer
container = IntentContainer()
## samples
container.add_intent('hello', ['hello', 'hi', 'how are you', "what's up"])
## "optionally" syntax
container.add_intent('hello world', ["hello [world]"])
## "one_of" syntax
container.add_intent('greeting', ["(hi|hey|hello)"])
## entity extraction
container.add_intent('buy', [
'buy {item}', 'purchase {item}', 'get {item}', 'get {item} for me'
])
container.add_intent('search', [
'search for {query} on {engine}', 'using {engine} (search|look) for {query}',
'find {query} (with|using) {engine}'
])
container.add_entity('engine', ['abc', 'xyz'])
container.calc_intent('find cats using xyz')
# {'conf': 1.0, 'name': 'search', 'entities': {'query': 'cats', 'engine': 'xyz'}}
## wildcards syntax
container.add_intent('say', ["say *"])
container.calc_intent('say something, whatever')
# {'conf': 0.85, 'entities': {}, 'name': 'test'}
## typed entities syntax
container.add_intent('pick_number', ['* number {number:int}'])
container.calc_intent('i want number 3')
# {'conf': 0.85, 'entities': {'number': 3}, 'name': 'pick_number'})
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
padacioso-2.2.1a1.tar.gz
(28.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file padacioso-2.2.1a1.tar.gz.
File metadata
- Download URL: padacioso-2.2.1a1.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d8d9706f04c0797bdf51f6ba0eded18be6c53feea725e519a0f1a9367cb4bcf
|
|
| MD5 |
ee121cf61954ed3464f6f296b58544ca
|
|
| BLAKE2b-256 |
d4802b29112087a421ae0f472dc6c0b179fc441ae2fcb61b7e11b75dcafaee27
|
File details
Details for the file padacioso-2.2.1a1-py3-none-any.whl.
File metadata
- Download URL: padacioso-2.2.1a1-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
342bc92f5f0e4247245a2022c2679c31790ac42cc1aa4add2467d96a5cb3236f
|
|
| MD5 |
60458762ec30cd2083c6fe2ae28754ef
|
|
| BLAKE2b-256 |
eef7fda0a0c2027ed0462c72226ee35f3f86a94b636e1a66b0aa7b55b1090ae0
|