Skip to main content
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.2a1.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

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

padacioso-2.2.2a1-py3-none-any.whl (19.6 kB view details)

Uploaded Python 3

File details

Details for the file padacioso-2.2.2a1.tar.gz.

File metadata

  • Download URL: padacioso-2.2.2a1.tar.gz
  • Upload date:
  • Size: 31.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for padacioso-2.2.2a1.tar.gz
Algorithm Hash digest
SHA256 6c6ce09472cf8102cd36d7adb21d2c281d8efc6025fd6078e180895b9f6101de
MD5 8b6701d8b35ba8389abe26ccfa8a05de
BLAKE2b-256 77cbcee9b7300075e530a5a115ac729c309250c687e96e39f28abdde57e9b59a

See more details on using hashes here.

File details

Details for the file padacioso-2.2.2a1-py3-none-any.whl.

File metadata

  • Download URL: padacioso-2.2.2a1-py3-none-any.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for padacioso-2.2.2a1-py3-none-any.whl
Algorithm Hash digest
SHA256 f37a49ec23cf99eeb542291476471680d5499e73b85560dbe766b08cb92ba2fb
MD5 5604c4da589c0c5f5f4fe0e789242be1
BLAKE2b-256 c8e6d9288fd128e5f3aeed4953a331737c017a649d0a12a21290f4ce791dc065

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.2.2a1 This release

2 files

1.0.0

2 files

0.2.4

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.2

1 file

0.1.1

1 file

0.1.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page