Skip to main content

dead simple intent parser

Project description

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'})

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

padacioso-2.1.2a1.tar.gz (25.4 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.1.2a1-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for padacioso-2.1.2a1.tar.gz
Algorithm Hash digest
SHA256 96786b224462825f227296f5e209ae24005d5600b7fde6685dcac38299125e23
MD5 18ab285f889f1780e8fbd2fd17c53a02
BLAKE2b-256 9aeb751e7bca311c6b9d00929f8bd05c88e69a633b025d6466aac84f2e444d79

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for padacioso-2.1.2a1-py3-none-any.whl
Algorithm Hash digest
SHA256 5c5de9485e6b3ed59cec4650eeb5555cab113db3f6a1ca6e175b9f38e5c01783
MD5 f92ba5c8c5f3027c0fed22d68a9280a9
BLAKE2b-256 428efd70d8f21f266c8c86d80782c0b353b52d3e1168cf00f2eb5d65911d982d

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