mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
|
"""Fake Chat Model wrapper for testing purposes."""
|
||
|
from typing import Any, Dict, List, Optional
|
||
|
|
||
|
from langchain_core.callbacks import (
|
||
|
AsyncCallbackManagerForLLMRun,
|
||
|
CallbackManagerForLLMRun,
|
||
|
)
|
||
|
from langchain_core.language_models.chat_models import SimpleChatModel
|
||
|
from langchain_core.messages import AIMessage, BaseMessage
|
||
|
from langchain_core.outputs import ChatGeneration, ChatResult
|
||
|
|
||
|
|
||
|
class FakeChatModel(SimpleChatModel):
|
||
|
"""Fake Chat Model wrapper for testing purposes."""
|
||
|
|
||
|
def _call(
|
||
|
self,
|
||
|
messages: List[BaseMessage],
|
||
|
stop: Optional[List[str]] = None,
|
||
|
run_manager: Optional[CallbackManagerForLLMRun] = None,
|
||
|
**kwargs: Any,
|
||
|
) -> str:
|
||
|
return "fake response"
|
||
|
|
||
|
async def _agenerate(
|
||
|
self,
|
||
|
messages: List[BaseMessage],
|
||
|
stop: Optional[List[str]] = None,
|
||
|
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
|
||
|
**kwargs: Any,
|
||
|
) -> ChatResult:
|
||
|
output_str = "fake response"
|
||
|
message = AIMessage(content=output_str)
|
||
|
generation = ChatGeneration(message=message)
|
||
|
return ChatResult(generations=[generation])
|
||
|
|
||
|
@property
|
||
|
def _llm_type(self) -> str:
|
||
|
return "fake-chat-model"
|
||
|
|
||
|
@property
|
||
|
def _identifying_params(self) -> Dict[str, Any]:
|
||
|
return {"key": "fake"}
|