{ "cells": [ { "cell_type": "markdown", "id": "b71a1322", "metadata": {}, "source": [ "# Get started with `tanaos-intent-classifier-v1`" ] }, { "cell_type": "markdown", "id": "2d2e5e95", "metadata": {}, "source": [ "Use with the [Artifex library](https://github.com/tanaos/artifex). Install it with\n", "\n", "```bash\n", "pip install artifex\n", "```" ] }, { "cell_type": "code", "execution_count": null, "id": "62dc2fbe", "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [ "from artifex import Artifex\n", "\n", "intent_classifier = Artifex().intent_classifier()\n", "\n", "label = intent_classifier(\"Hey there, how are you doing?\")\n", "print(label)" ] } ], "metadata": { "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 5 }