""" This file contains tests for the API of your model. You can run these tests by installing test requirements: ```bash pip install -r requirements-test.txt ``` Then execute `pytest` in the directory of this file. - Change `NewModel` to the name of the class in your model.py file. - Change the `request` and `expected_response` variables to match the input and output of your model. """ import pytest import json from model import HuggingFaceLLM @pytest.fixture def client(): from _wsgi import init_app app = init_app(model_class=HuggingFaceLLM) app.config['TESTING'] = True with app.test_client() as client: yield client def test_predict(client): request = { 'tasks': [{ 'data': { 'text': 'If I say "I feel like I am walking on air" it means ' } }], # Your labeling configuration here 'label_config': '''