├── LICENSE ├── README.md ├── __init__.py ├── neuralintents ├── __init__.py ├── assistants.py └── examples │ ├── basic_chatbot │ ├── example.py │ └── intents.json │ ├── chatbot_with_methods │ ├── example.py │ └── intents.json │ ├── custom_architecture │ ├── example.py │ └── intents.json │ └── saving_loading_model │ ├── example.py │ └── intents.json └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neuralintents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/__init__.py -------------------------------------------------------------------------------- /neuralintents/assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/assistants.py -------------------------------------------------------------------------------- /neuralintents/examples/basic_chatbot/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/basic_chatbot/example.py -------------------------------------------------------------------------------- /neuralintents/examples/basic_chatbot/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/basic_chatbot/intents.json -------------------------------------------------------------------------------- /neuralintents/examples/chatbot_with_methods/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/chatbot_with_methods/example.py -------------------------------------------------------------------------------- /neuralintents/examples/chatbot_with_methods/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/chatbot_with_methods/intents.json -------------------------------------------------------------------------------- /neuralintents/examples/custom_architecture/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/custom_architecture/example.py -------------------------------------------------------------------------------- /neuralintents/examples/custom_architecture/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/custom_architecture/intents.json -------------------------------------------------------------------------------- /neuralintents/examples/saving_loading_model/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/saving_loading_model/example.py -------------------------------------------------------------------------------- /neuralintents/examples/saving_loading_model/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/neuralintents/examples/saving_loading_model/intents.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralNine/neuralintents/HEAD/setup.py --------------------------------------------------------------------------------