Rename llm/llm_interface.py to llm/lc_interface.py
Browse files
llm/{llm_interface.py β lc_interface.py}
RENAMED
@@ -2,7 +2,7 @@ from abc import ABC, abstractmethod
|
|
2 |
from typing import Dict, Optional
|
3 |
|
4 |
|
5 |
-
class
|
6 |
@abstractmethod
|
7 |
def execution(self):
|
8 |
"""Method execution LLM model based on HuggingFace or Langchain"""
|
|
|
2 |
from typing import Dict, Optional
|
3 |
|
4 |
|
5 |
+
class LCInterface(ABC):
|
6 |
@abstractmethod
|
7 |
def execution(self):
|
8 |
"""Method execution LLM model based on HuggingFace or Langchain"""
|