mirror of
https://github.com/langgenius/dify.git
synced 2025-07-12 19:49:42 +00:00
21 lines
563 B
Python
21 lines
563 B
Python
![]() |
from tests.integration_tests.model_runtime.__mock.huggingface_chat import MockHuggingfaceChatClass
|
||
|
|
||
|
from huggingface_hub import InferenceClient
|
||
|
|
||
|
from _pytest.monkeypatch import MonkeyPatch
|
||
|
from typing import List, Dict, Any
|
||
|
|
||
|
import pytest
|
||
|
import os
|
||
|
|
||
|
MOCK = os.getenv('MOCK_SWITCH', 'false').lower() == 'true'
|
||
|
|
||
|
@pytest.fixture
|
||
|
def setup_huggingface_mock(request, monkeypatch: MonkeyPatch):
|
||
|
if MOCK:
|
||
|
monkeypatch.setattr(InferenceClient, "text_generation", MockHuggingfaceChatClass.text_generation)
|
||
|
|
||
|
yield
|
||
|
|
||
|
if MOCK:
|
||
|
monkeypatch.undo()
|