|
|
@ -1,7 +1,11 @@
|
|
|
|
import torch
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import pytest
|
|
|
|
from unittest.mock import patch, MagicMock
|
|
|
|
import torch
|
|
|
|
from swarms.models.huggingface import HuggingfaceLLM # Replace with the actual import path
|
|
|
|
|
|
|
|
|
|
|
|
from swarms.models.huggingface import (
|
|
|
|
|
|
|
|
HuggingfaceLLM, # Replace with the actual import path
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Fixture for the class instance
|
|
|
|
# Fixture for the class instance
|
|
|
|