├── .github └── workflows │ ├── publish-docs.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── docs ├── CNAME ├── advanced │ ├── custom-interfaces.md │ ├── custom-run.md │ ├── external-triggers.md │ ├── fallback-command-llm-integration.md │ ├── localization-and-multi-language.md │ ├── optimization.md │ └── other.md ├── command-response.md ├── commands-context.md ├── contributing-and-shared-usage-stark-place.md ├── creating-commands.md ├── default-speech-interfaces.md ├── dependency-injection.md ├── first-steps.md ├── index.md ├── installation.md ├── patterns.md ├── sync-vs-async-commands.md ├── tools │ ├── phonetic-dictionary.md │ ├── raw-phonetic.md │ ├── sliding-window-parser.md │ └── stark-levenshtein.md ├── voice-assistant.md └── where-to-host.md ├── mkdocs.yml ├── overrides └── main.html ├── poetry.lock ├── pyproject.toml ├── setup.py ├── stark ├── __init__.py ├── core │ ├── __init__.py │ ├── command.py │ ├── commands_context.py │ ├── commands_context_processor.py │ ├── commands_manager.py │ ├── health_check.py │ ├── parsing.py │ ├── patterns │ │ ├── __init__.py │ │ ├── pattern.py │ │ └── rules.py │ ├── processors │ │ ├── __init__.py │ │ ├── search_processor.py │ │ └── spacy_ner_processor.py │ └── types │ │ ├── __init__.py │ │ ├── location.py │ │ ├── object.py │ │ ├── slots.py │ │ ├── string.py │ │ └── word.py ├── general │ ├── blockage_detector.py │ ├── cache.py │ ├── classproperty.py │ ├── dependencies.py │ └── json_encoder.py ├── interfaces │ ├── gcloud.py │ ├── protocols.py │ ├── silero.py │ └── vosk.py ├── tools │ ├── common │ │ └── span.py │ ├── dictionary │ │ ├── !examples.py │ │ ├── __init__.py │ │ ├── dictionary.py │ │ ├── models.py │ │ ├── nl_dictionary_name.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── storage_memory.py │ │ │ └── storage_sqlite.py │ ├── levenshtein │ │ ├── __init__.py │ │ ├── levenshtein.pyi │ │ └── levenshtein.pyx │ ├── phonetic │ │ ├── simplephone.py │ │ └── transcription │ │ │ ├── __init__.py │ │ │ ├── epitran.py │ │ │ ├── espeak.py │ │ │ ├── ipa2lat.py │ │ │ └── protocol.py │ ├── sliding_window_parser.py │ └── strtools.py └── voice_assistant │ ├── __init__.py │ ├── mode.py │ └── voice_assistant.py └── tests ├── conftest.py ├── test_commands ├── test_async_command.py ├── test_commands_manager.py ├── test_commands_to_json.py └── test_sync_command.py ├── test_commands_flow ├── test_command_run.py ├── test_commands_context.py ├── test_commands_context_generators.py ├── test_commands_context_inject_dependencies.py ├── test_commands_context_respond.py ├── test_complex_commands.py └── test_multiple_commands.py ├── test_core └── test_commands_context_search_processor.py ├── test_health_check.py ├── test_nl_objects ├── test_complex_parsing.py ├── test_ner.py ├── test_nested_viobjects.py ├── test_rules.py ├── test_vistring.py └── test_viword.py ├── test_patterns ├── test_pattern_parameters.py └── test_patterns.py ├── test_tools ├── benchmark_viewer.html ├── plot_lev.py ├── test_benchmark.py ├── test_dictionary.py ├── test_nl_dictionary_name.py ├── test_phonetic │ ├── test_ipa2lat.py │ ├── test_phonetic.py │ └── test_simplephone.py ├── test_sliding_window_parser.py └── test_strtools │ ├── test_levenshtein.py │ └── test_strtools.py └── test_va_modes.py /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/CNAME -------------------------------------------------------------------------------- /docs/advanced/custom-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/custom-interfaces.md -------------------------------------------------------------------------------- /docs/advanced/custom-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/custom-run.md -------------------------------------------------------------------------------- /docs/advanced/external-triggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/external-triggers.md -------------------------------------------------------------------------------- /docs/advanced/fallback-command-llm-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/fallback-command-llm-integration.md -------------------------------------------------------------------------------- /docs/advanced/localization-and-multi-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/localization-and-multi-language.md -------------------------------------------------------------------------------- /docs/advanced/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/optimization.md -------------------------------------------------------------------------------- /docs/advanced/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/advanced/other.md -------------------------------------------------------------------------------- /docs/command-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/command-response.md -------------------------------------------------------------------------------- /docs/commands-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/commands-context.md -------------------------------------------------------------------------------- /docs/contributing-and-shared-usage-stark-place.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/contributing-and-shared-usage-stark-place.md -------------------------------------------------------------------------------- /docs/creating-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/creating-commands.md -------------------------------------------------------------------------------- /docs/default-speech-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/default-speech-interfaces.md -------------------------------------------------------------------------------- /docs/dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/dependency-injection.md -------------------------------------------------------------------------------- /docs/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/first-steps.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/patterns.md -------------------------------------------------------------------------------- /docs/sync-vs-async-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/sync-vs-async-commands.md -------------------------------------------------------------------------------- /docs/tools/phonetic-dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/tools/phonetic-dictionary.md -------------------------------------------------------------------------------- /docs/tools/raw-phonetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/tools/raw-phonetic.md -------------------------------------------------------------------------------- /docs/tools/sliding-window-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/tools/sliding-window-parser.md -------------------------------------------------------------------------------- /docs/tools/stark-levenshtein.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/tools/stark-levenshtein.md -------------------------------------------------------------------------------- /docs/voice-assistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/voice-assistant.md -------------------------------------------------------------------------------- /docs/where-to-host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/docs/where-to-host.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/overrides/main.html -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/setup.py -------------------------------------------------------------------------------- /stark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/__init__.py -------------------------------------------------------------------------------- /stark/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/__init__.py -------------------------------------------------------------------------------- /stark/core/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/command.py -------------------------------------------------------------------------------- /stark/core/commands_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/commands_context.py -------------------------------------------------------------------------------- /stark/core/commands_context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/commands_context_processor.py -------------------------------------------------------------------------------- /stark/core/commands_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/commands_manager.py -------------------------------------------------------------------------------- /stark/core/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/health_check.py -------------------------------------------------------------------------------- /stark/core/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/parsing.py -------------------------------------------------------------------------------- /stark/core/patterns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/patterns/__init__.py -------------------------------------------------------------------------------- /stark/core/patterns/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/patterns/pattern.py -------------------------------------------------------------------------------- /stark/core/patterns/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/patterns/rules.py -------------------------------------------------------------------------------- /stark/core/processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/processors/__init__.py -------------------------------------------------------------------------------- /stark/core/processors/search_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/processors/search_processor.py -------------------------------------------------------------------------------- /stark/core/processors/spacy_ner_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/processors/spacy_ner_processor.py -------------------------------------------------------------------------------- /stark/core/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/types/__init__.py -------------------------------------------------------------------------------- /stark/core/types/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/types/location.py -------------------------------------------------------------------------------- /stark/core/types/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/types/object.py -------------------------------------------------------------------------------- /stark/core/types/slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/types/slots.py -------------------------------------------------------------------------------- /stark/core/types/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/types/string.py -------------------------------------------------------------------------------- /stark/core/types/word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/core/types/word.py -------------------------------------------------------------------------------- /stark/general/blockage_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/general/blockage_detector.py -------------------------------------------------------------------------------- /stark/general/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/general/cache.py -------------------------------------------------------------------------------- /stark/general/classproperty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/general/classproperty.py -------------------------------------------------------------------------------- /stark/general/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/general/dependencies.py -------------------------------------------------------------------------------- /stark/general/json_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/general/json_encoder.py -------------------------------------------------------------------------------- /stark/interfaces/gcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/interfaces/gcloud.py -------------------------------------------------------------------------------- /stark/interfaces/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/interfaces/protocols.py -------------------------------------------------------------------------------- /stark/interfaces/silero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/interfaces/silero.py -------------------------------------------------------------------------------- /stark/interfaces/vosk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/interfaces/vosk.py -------------------------------------------------------------------------------- /stark/tools/common/span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/common/span.py -------------------------------------------------------------------------------- /stark/tools/dictionary/!examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/!examples.py -------------------------------------------------------------------------------- /stark/tools/dictionary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/__init__.py -------------------------------------------------------------------------------- /stark/tools/dictionary/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/dictionary.py -------------------------------------------------------------------------------- /stark/tools/dictionary/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/models.py -------------------------------------------------------------------------------- /stark/tools/dictionary/nl_dictionary_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/nl_dictionary_name.py -------------------------------------------------------------------------------- /stark/tools/dictionary/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/storage/__init__.py -------------------------------------------------------------------------------- /stark/tools/dictionary/storage/storage_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/storage/storage_memory.py -------------------------------------------------------------------------------- /stark/tools/dictionary/storage/storage_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/dictionary/storage/storage_sqlite.py -------------------------------------------------------------------------------- /stark/tools/levenshtein/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/levenshtein/__init__.py -------------------------------------------------------------------------------- /stark/tools/levenshtein/levenshtein.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/levenshtein/levenshtein.pyi -------------------------------------------------------------------------------- /stark/tools/levenshtein/levenshtein.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/levenshtein/levenshtein.pyx -------------------------------------------------------------------------------- /stark/tools/phonetic/simplephone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/phonetic/simplephone.py -------------------------------------------------------------------------------- /stark/tools/phonetic/transcription/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/phonetic/transcription/__init__.py -------------------------------------------------------------------------------- /stark/tools/phonetic/transcription/epitran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/phonetic/transcription/epitran.py -------------------------------------------------------------------------------- /stark/tools/phonetic/transcription/espeak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/phonetic/transcription/espeak.py -------------------------------------------------------------------------------- /stark/tools/phonetic/transcription/ipa2lat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/phonetic/transcription/ipa2lat.py -------------------------------------------------------------------------------- /stark/tools/phonetic/transcription/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/phonetic/transcription/protocol.py -------------------------------------------------------------------------------- /stark/tools/sliding_window_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/sliding_window_parser.py -------------------------------------------------------------------------------- /stark/tools/strtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/tools/strtools.py -------------------------------------------------------------------------------- /stark/voice_assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/voice_assistant/__init__.py -------------------------------------------------------------------------------- /stark/voice_assistant/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/voice_assistant/mode.py -------------------------------------------------------------------------------- /stark/voice_assistant/voice_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/stark/voice_assistant/voice_assistant.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_commands/test_async_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands/test_async_command.py -------------------------------------------------------------------------------- /tests/test_commands/test_commands_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands/test_commands_manager.py -------------------------------------------------------------------------------- /tests/test_commands/test_commands_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands/test_commands_to_json.py -------------------------------------------------------------------------------- /tests/test_commands/test_sync_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands/test_sync_command.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_command_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_command_run.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_commands_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_commands_context.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_commands_context_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_commands_context_generators.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_commands_context_inject_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_commands_context_inject_dependencies.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_commands_context_respond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_commands_context_respond.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_complex_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_complex_commands.py -------------------------------------------------------------------------------- /tests/test_commands_flow/test_multiple_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_commands_flow/test_multiple_commands.py -------------------------------------------------------------------------------- /tests/test_core/test_commands_context_search_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_core/test_commands_context_search_processor.py -------------------------------------------------------------------------------- /tests/test_health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_health_check.py -------------------------------------------------------------------------------- /tests/test_nl_objects/test_complex_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_nl_objects/test_complex_parsing.py -------------------------------------------------------------------------------- /tests/test_nl_objects/test_ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_nl_objects/test_ner.py -------------------------------------------------------------------------------- /tests/test_nl_objects/test_nested_viobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_nl_objects/test_nested_viobjects.py -------------------------------------------------------------------------------- /tests/test_nl_objects/test_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_nl_objects/test_rules.py -------------------------------------------------------------------------------- /tests/test_nl_objects/test_vistring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_nl_objects/test_vistring.py -------------------------------------------------------------------------------- /tests/test_nl_objects/test_viword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_nl_objects/test_viword.py -------------------------------------------------------------------------------- /tests/test_patterns/test_pattern_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_patterns/test_pattern_parameters.py -------------------------------------------------------------------------------- /tests/test_patterns/test_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_patterns/test_patterns.py -------------------------------------------------------------------------------- /tests/test_tools/benchmark_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/benchmark_viewer.html -------------------------------------------------------------------------------- /tests/test_tools/plot_lev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/plot_lev.py -------------------------------------------------------------------------------- /tests/test_tools/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_benchmark.py -------------------------------------------------------------------------------- /tests/test_tools/test_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_dictionary.py -------------------------------------------------------------------------------- /tests/test_tools/test_nl_dictionary_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_nl_dictionary_name.py -------------------------------------------------------------------------------- /tests/test_tools/test_phonetic/test_ipa2lat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_phonetic/test_ipa2lat.py -------------------------------------------------------------------------------- /tests/test_tools/test_phonetic/test_phonetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_phonetic/test_phonetic.py -------------------------------------------------------------------------------- /tests/test_tools/test_phonetic/test_simplephone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_phonetic/test_simplephone.py -------------------------------------------------------------------------------- /tests/test_tools/test_sliding_window_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_sliding_window_parser.py -------------------------------------------------------------------------------- /tests/test_tools/test_strtools/test_levenshtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_strtools/test_levenshtein.py -------------------------------------------------------------------------------- /tests/test_tools/test_strtools/test_strtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_tools/test_strtools/test_strtools.py -------------------------------------------------------------------------------- /tests/test_va_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkParker5/STARK/HEAD/tests/test_va_modes.py --------------------------------------------------------------------------------