Spaces:
Runtime error
Runtime error
Fixed typo in comment.
Browse files- src/architectures.py +1 -1
src/architectures.py
CHANGED
@@ -150,7 +150,7 @@ class ArchitectureComponent(ABC):
|
|
150 |
@abstractmethod
|
151 |
def process_request(self, request: ArchitectureRequest) -> None:
|
152 |
"""
|
153 |
-
The
|
154 |
They should signal anything to the pipeline through direct modification of the provided
|
155 |
request (i.e. amending the request text or response text, or setting the early_exit flag).
|
156 |
:param request: The request which is flowing down the pipeline
|
|
|
150 |
@abstractmethod
|
151 |
def process_request(self, request: ArchitectureRequest) -> None:
|
152 |
"""
|
153 |
+
The principal method that concrete implementations of a component must implement.
|
154 |
They should signal anything to the pipeline through direct modification of the provided
|
155 |
request (i.e. amending the request text or response text, or setting the early_exit flag).
|
156 |
:param request: The request which is flowing down the pipeline
|