mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-08-26 16:55:38 -04:00
e194dc5306
<!-- Thank you for contributing to LangChain! Your PR will appear in our release under the title you set. Please make sure it highlights your valuable contribution. Replace this with a description of the change, the issue it fixes (if applicable), and relevant context. List any dependencies required for this change. After you're done, someone will review your PR. They may suggest improvements. If no one reviews your PR within a few days, feel free to @-mention the same people again, as notifications can get lost. Finally, we'd love to show appreciation for your contribution - if you'd like us to shout you out on Twitter, please also include your handle! --> <!-- Remove if not applicable --> Fixes # (issue) #### Before submitting <!-- If you're adding a new integration, please include: 1. a test for the integration - favor unit tests that does not rely on network access. 2. an example notebook showing its use See contribution guidelines for more information on how to write tests, lint etc: https://github.com/hwchase17/langchain/blob/master/.github/CONTRIBUTING.md --> #### Who can review? Tag maintainers/contributors who might be interested: <!-- For a quicker response, figure out the right person to tag with @ @hwchase17 - project lead Tracing / Callbacks - @agola11 Async - @agola11 DataLoaders - @eyurtsev Models - @hwchase17 - @agola11 Agents / Tools / Toolkits - @hwchase17 VectorStores / Retrievers / Memory - @dev2049 -->
523 lines
18 KiB
Python
523 lines
18 KiB
Python
"""Base interface for large language models to expose."""
|
|
import inspect
|
|
import json
|
|
import warnings
|
|
from abc import ABC, abstractmethod
|
|
from pathlib import Path
|
|
from typing import Any, Dict, List, Mapping, Optional, Sequence, Tuple, Union
|
|
|
|
import yaml
|
|
from pydantic import Field, root_validator, validator
|
|
|
|
import langchain
|
|
from langchain.base_language import BaseLanguageModel
|
|
from langchain.callbacks.base import BaseCallbackManager
|
|
from langchain.callbacks.manager import (
|
|
AsyncCallbackManager,
|
|
AsyncCallbackManagerForLLMRun,
|
|
CallbackManager,
|
|
CallbackManagerForLLMRun,
|
|
Callbacks,
|
|
)
|
|
from langchain.load.dump import dumpd
|
|
from langchain.schema import (
|
|
AIMessage,
|
|
BaseMessage,
|
|
Generation,
|
|
LLMResult,
|
|
PromptValue,
|
|
RunInfo,
|
|
get_buffer_string,
|
|
)
|
|
|
|
|
|
def _get_verbosity() -> bool:
|
|
return langchain.verbose
|
|
|
|
|
|
def get_prompts(
|
|
params: Dict[str, Any], prompts: List[str]
|
|
) -> Tuple[Dict[int, List], str, List[int], List[str]]:
|
|
"""Get prompts that are already cached."""
|
|
llm_string = str(sorted([(k, v) for k, v in params.items()]))
|
|
missing_prompts = []
|
|
missing_prompt_idxs = []
|
|
existing_prompts = {}
|
|
for i, prompt in enumerate(prompts):
|
|
if langchain.llm_cache is not None:
|
|
cache_val = langchain.llm_cache.lookup(prompt, llm_string)
|
|
if isinstance(cache_val, list):
|
|
existing_prompts[i] = cache_val
|
|
else:
|
|
missing_prompts.append(prompt)
|
|
missing_prompt_idxs.append(i)
|
|
return existing_prompts, llm_string, missing_prompt_idxs, missing_prompts
|
|
|
|
|
|
def update_cache(
|
|
existing_prompts: Dict[int, List],
|
|
llm_string: str,
|
|
missing_prompt_idxs: List[int],
|
|
new_results: LLMResult,
|
|
prompts: List[str],
|
|
) -> Optional[dict]:
|
|
"""Update the cache and get the LLM output."""
|
|
for i, result in enumerate(new_results.generations):
|
|
existing_prompts[missing_prompt_idxs[i]] = result
|
|
prompt = prompts[missing_prompt_idxs[i]]
|
|
if langchain.llm_cache is not None:
|
|
langchain.llm_cache.update(prompt, llm_string, result)
|
|
llm_output = new_results.llm_output
|
|
return llm_output
|
|
|
|
|
|
class BaseLLM(BaseLanguageModel, ABC):
|
|
"""LLM wrapper should take in a prompt and return a string."""
|
|
|
|
cache: Optional[bool] = None
|
|
verbose: bool = Field(default_factory=_get_verbosity)
|
|
"""Whether to print out response text."""
|
|
callbacks: Callbacks = Field(default=None, exclude=True)
|
|
callback_manager: Optional[BaseCallbackManager] = Field(default=None, exclude=True)
|
|
tags: Optional[List[str]] = Field(default=None, exclude=True)
|
|
"""Tags to add to the run trace."""
|
|
|
|
class Config:
|
|
"""Configuration for this pydantic object."""
|
|
|
|
arbitrary_types_allowed = True
|
|
|
|
@root_validator()
|
|
def raise_deprecation(cls, values: Dict) -> Dict:
|
|
"""Raise deprecation warning if callback_manager is used."""
|
|
if values.get("callback_manager") is not None:
|
|
warnings.warn(
|
|
"callback_manager is deprecated. Please use callbacks instead.",
|
|
DeprecationWarning,
|
|
)
|
|
values["callbacks"] = values.pop("callback_manager", None)
|
|
return values
|
|
|
|
@validator("verbose", pre=True, always=True)
|
|
def set_verbose(cls, verbose: Optional[bool]) -> bool:
|
|
"""If verbose is None, set it.
|
|
|
|
This allows users to pass in None as verbose to access the global setting.
|
|
"""
|
|
if verbose is None:
|
|
return _get_verbosity()
|
|
else:
|
|
return verbose
|
|
|
|
@abstractmethod
|
|
def _generate(
|
|
self,
|
|
prompts: List[str],
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[CallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
"""Run the LLM on the given prompts."""
|
|
|
|
@abstractmethod
|
|
async def _agenerate(
|
|
self,
|
|
prompts: List[str],
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
"""Run the LLM on the given prompts."""
|
|
|
|
def generate_prompt(
|
|
self,
|
|
prompts: List[PromptValue],
|
|
stop: Optional[List[str]] = None,
|
|
callbacks: Callbacks = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
prompt_strings = [p.to_string() for p in prompts]
|
|
return self.generate(prompt_strings, stop=stop, callbacks=callbacks, **kwargs)
|
|
|
|
async def agenerate_prompt(
|
|
self,
|
|
prompts: List[PromptValue],
|
|
stop: Optional[List[str]] = None,
|
|
callbacks: Callbacks = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
prompt_strings = [p.to_string() for p in prompts]
|
|
return await self.agenerate(
|
|
prompt_strings, stop=stop, callbacks=callbacks, **kwargs
|
|
)
|
|
|
|
def generate(
|
|
self,
|
|
prompts: List[str],
|
|
stop: Optional[List[str]] = None,
|
|
callbacks: Callbacks = None,
|
|
*,
|
|
tags: Optional[List[str]] = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
"""Run the LLM on the given prompt and input."""
|
|
# If string is passed in directly no errors will be raised but outputs will
|
|
# not make sense.
|
|
if not isinstance(prompts, list):
|
|
raise ValueError(
|
|
"Argument 'prompts' is expected to be of type List[str], received"
|
|
f" argument of type {type(prompts)}."
|
|
)
|
|
params = self.dict()
|
|
params["stop"] = stop
|
|
options = {"stop": stop}
|
|
(
|
|
existing_prompts,
|
|
llm_string,
|
|
missing_prompt_idxs,
|
|
missing_prompts,
|
|
) = get_prompts(params, prompts)
|
|
disregard_cache = self.cache is not None and not self.cache
|
|
callback_manager = CallbackManager.configure(
|
|
callbacks, self.callbacks, self.verbose, tags, self.tags
|
|
)
|
|
new_arg_supported = inspect.signature(self._generate).parameters.get(
|
|
"run_manager"
|
|
)
|
|
if langchain.llm_cache is None or disregard_cache:
|
|
# This happens when langchain.cache is None, but self.cache is True
|
|
if self.cache is not None and self.cache:
|
|
raise ValueError(
|
|
"Asked to cache, but no cache found at `langchain.cache`."
|
|
)
|
|
run_manager = callback_manager.on_llm_start(
|
|
dumpd(self), prompts, invocation_params=params, options=options
|
|
)
|
|
try:
|
|
output = (
|
|
self._generate(
|
|
prompts, stop=stop, run_manager=run_manager, **kwargs
|
|
)
|
|
if new_arg_supported
|
|
else self._generate(prompts, stop=stop, **kwargs)
|
|
)
|
|
except (KeyboardInterrupt, Exception) as e:
|
|
run_manager.on_llm_error(e)
|
|
raise e
|
|
run_manager.on_llm_end(output)
|
|
if run_manager:
|
|
output.run = RunInfo(run_id=run_manager.run_id)
|
|
return output
|
|
if len(missing_prompts) > 0:
|
|
run_manager = callback_manager.on_llm_start(
|
|
dumpd(self),
|
|
missing_prompts,
|
|
invocation_params=params,
|
|
options=options,
|
|
)
|
|
try:
|
|
new_results = (
|
|
self._generate(
|
|
missing_prompts, stop=stop, run_manager=run_manager, **kwargs
|
|
)
|
|
if new_arg_supported
|
|
else self._generate(missing_prompts, stop=stop, **kwargs)
|
|
)
|
|
except (KeyboardInterrupt, Exception) as e:
|
|
run_manager.on_llm_error(e)
|
|
raise e
|
|
run_manager.on_llm_end(new_results)
|
|
llm_output = update_cache(
|
|
existing_prompts, llm_string, missing_prompt_idxs, new_results, prompts
|
|
)
|
|
run_info = None
|
|
if run_manager:
|
|
run_info = RunInfo(run_id=run_manager.run_id)
|
|
else:
|
|
llm_output = {}
|
|
run_info = None
|
|
generations = [existing_prompts[i] for i in range(len(prompts))]
|
|
return LLMResult(generations=generations, llm_output=llm_output, run=run_info)
|
|
|
|
async def agenerate(
|
|
self,
|
|
prompts: List[str],
|
|
stop: Optional[List[str]] = None,
|
|
callbacks: Callbacks = None,
|
|
*,
|
|
tags: Optional[List[str]] = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
"""Run the LLM on the given prompt and input."""
|
|
params = self.dict()
|
|
params["stop"] = stop
|
|
options = {"stop": stop}
|
|
(
|
|
existing_prompts,
|
|
llm_string,
|
|
missing_prompt_idxs,
|
|
missing_prompts,
|
|
) = get_prompts(params, prompts)
|
|
disregard_cache = self.cache is not None and not self.cache
|
|
callback_manager = AsyncCallbackManager.configure(
|
|
callbacks, self.callbacks, self.verbose, tags, self.tags
|
|
)
|
|
new_arg_supported = inspect.signature(self._agenerate).parameters.get(
|
|
"run_manager"
|
|
)
|
|
if langchain.llm_cache is None or disregard_cache:
|
|
# This happens when langchain.cache is None, but self.cache is True
|
|
if self.cache is not None and self.cache:
|
|
raise ValueError(
|
|
"Asked to cache, but no cache found at `langchain.cache`."
|
|
)
|
|
run_manager = await callback_manager.on_llm_start(
|
|
dumpd(self), prompts, invocation_params=params, options=options
|
|
)
|
|
try:
|
|
output = (
|
|
await self._agenerate(
|
|
prompts, stop=stop, run_manager=run_manager, **kwargs
|
|
)
|
|
if new_arg_supported
|
|
else await self._agenerate(prompts, stop=stop, **kwargs)
|
|
)
|
|
except (KeyboardInterrupt, Exception) as e:
|
|
await run_manager.on_llm_error(e, verbose=self.verbose)
|
|
raise e
|
|
await run_manager.on_llm_end(output, verbose=self.verbose)
|
|
if run_manager:
|
|
output.run = RunInfo(run_id=run_manager.run_id)
|
|
return output
|
|
if len(missing_prompts) > 0:
|
|
run_manager = await callback_manager.on_llm_start(
|
|
dumpd(self),
|
|
missing_prompts,
|
|
invocation_params=params,
|
|
options=options,
|
|
)
|
|
try:
|
|
new_results = (
|
|
await self._agenerate(
|
|
missing_prompts, stop=stop, run_manager=run_manager, **kwargs
|
|
)
|
|
if new_arg_supported
|
|
else await self._agenerate(missing_prompts, stop=stop, **kwargs)
|
|
)
|
|
except (KeyboardInterrupt, Exception) as e:
|
|
await run_manager.on_llm_error(e)
|
|
raise e
|
|
await run_manager.on_llm_end(new_results)
|
|
llm_output = update_cache(
|
|
existing_prompts, llm_string, missing_prompt_idxs, new_results, prompts
|
|
)
|
|
run_info = None
|
|
if run_manager:
|
|
run_info = RunInfo(run_id=run_manager.run_id)
|
|
else:
|
|
llm_output = {}
|
|
run_info = None
|
|
generations = [existing_prompts[i] for i in range(len(prompts))]
|
|
return LLMResult(generations=generations, llm_output=llm_output, run=run_info)
|
|
|
|
def __call__(
|
|
self,
|
|
prompt: str,
|
|
stop: Optional[List[str]] = None,
|
|
callbacks: Callbacks = None,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""Check Cache and run the LLM on the given prompt and input."""
|
|
if not isinstance(prompt, str):
|
|
raise ValueError(
|
|
"Argument `prompt` is expected to be a string. Instead found "
|
|
f"{type(prompt)}. If you want to run the LLM on multiple prompts, use "
|
|
"`generate` instead."
|
|
)
|
|
return (
|
|
self.generate([prompt], stop=stop, callbacks=callbacks, **kwargs)
|
|
.generations[0][0]
|
|
.text
|
|
)
|
|
|
|
async def _call_async(
|
|
self,
|
|
prompt: str,
|
|
stop: Optional[List[str]] = None,
|
|
callbacks: Callbacks = None,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""Check Cache and run the LLM on the given prompt and input."""
|
|
result = await self.agenerate(
|
|
[prompt], stop=stop, callbacks=callbacks, **kwargs
|
|
)
|
|
return result.generations[0][0].text
|
|
|
|
def predict(
|
|
self, text: str, *, stop: Optional[Sequence[str]] = None, **kwargs: Any
|
|
) -> str:
|
|
if stop is None:
|
|
_stop = None
|
|
else:
|
|
_stop = list(stop)
|
|
return self(text, stop=_stop, **kwargs)
|
|
|
|
def predict_messages(
|
|
self,
|
|
messages: List[BaseMessage],
|
|
*,
|
|
stop: Optional[Sequence[str]] = None,
|
|
**kwargs: Any,
|
|
) -> BaseMessage:
|
|
text = get_buffer_string(messages)
|
|
if stop is None:
|
|
_stop = None
|
|
else:
|
|
_stop = list(stop)
|
|
content = self(text, stop=_stop, **kwargs)
|
|
return AIMessage(content=content)
|
|
|
|
async def apredict(
|
|
self, text: str, *, stop: Optional[Sequence[str]] = None, **kwargs: Any
|
|
) -> str:
|
|
if stop is None:
|
|
_stop = None
|
|
else:
|
|
_stop = list(stop)
|
|
return await self._call_async(text, stop=_stop, **kwargs)
|
|
|
|
async def apredict_messages(
|
|
self,
|
|
messages: List[BaseMessage],
|
|
*,
|
|
stop: Optional[Sequence[str]] = None,
|
|
**kwargs: Any,
|
|
) -> BaseMessage:
|
|
text = get_buffer_string(messages)
|
|
if stop is None:
|
|
_stop = None
|
|
else:
|
|
_stop = list(stop)
|
|
content = await self._call_async(text, stop=_stop, **kwargs)
|
|
return AIMessage(content=content)
|
|
|
|
@property
|
|
def _identifying_params(self) -> Mapping[str, Any]:
|
|
"""Get the identifying parameters."""
|
|
return {}
|
|
|
|
def __str__(self) -> str:
|
|
"""Get a string representation of the object for printing."""
|
|
cls_name = f"\033[1m{self.__class__.__name__}\033[0m"
|
|
return f"{cls_name}\nParams: {self._identifying_params}"
|
|
|
|
@property
|
|
@abstractmethod
|
|
def _llm_type(self) -> str:
|
|
"""Return type of llm."""
|
|
|
|
def dict(self, **kwargs: Any) -> Dict:
|
|
"""Return a dictionary of the LLM."""
|
|
starter_dict = dict(self._identifying_params)
|
|
starter_dict["_type"] = self._llm_type
|
|
return starter_dict
|
|
|
|
def save(self, file_path: Union[Path, str]) -> None:
|
|
"""Save the LLM.
|
|
|
|
Args:
|
|
file_path: Path to file to save the LLM to.
|
|
|
|
Example:
|
|
.. code-block:: python
|
|
|
|
llm.save(file_path="path/llm.yaml")
|
|
"""
|
|
# Convert file to Path object.
|
|
if isinstance(file_path, str):
|
|
save_path = Path(file_path)
|
|
else:
|
|
save_path = file_path
|
|
|
|
directory_path = save_path.parent
|
|
directory_path.mkdir(parents=True, exist_ok=True)
|
|
|
|
# Fetch dictionary to save
|
|
prompt_dict = self.dict()
|
|
|
|
if save_path.suffix == ".json":
|
|
with open(file_path, "w") as f:
|
|
json.dump(prompt_dict, f, indent=4)
|
|
elif save_path.suffix == ".yaml":
|
|
with open(file_path, "w") as f:
|
|
yaml.dump(prompt_dict, f, default_flow_style=False)
|
|
else:
|
|
raise ValueError(f"{save_path} must be json or yaml")
|
|
|
|
|
|
class LLM(BaseLLM):
|
|
"""LLM class that expect subclasses to implement a simpler call method.
|
|
|
|
The purpose of this class is to expose a simpler interface for working
|
|
with LLMs, rather than expect the user to implement the full _generate method.
|
|
"""
|
|
|
|
@abstractmethod
|
|
def _call(
|
|
self,
|
|
prompt: str,
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[CallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""Run the LLM on the given prompt and input."""
|
|
|
|
async def _acall(
|
|
self,
|
|
prompt: str,
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""Run the LLM on the given prompt and input."""
|
|
raise NotImplementedError("Async generation not implemented for this LLM.")
|
|
|
|
def _generate(
|
|
self,
|
|
prompts: List[str],
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[CallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
"""Run the LLM on the given prompt and input."""
|
|
# TODO: add caching here.
|
|
generations = []
|
|
new_arg_supported = inspect.signature(self._call).parameters.get("run_manager")
|
|
for prompt in prompts:
|
|
text = (
|
|
self._call(prompt, stop=stop, run_manager=run_manager, **kwargs)
|
|
if new_arg_supported
|
|
else self._call(prompt, stop=stop, **kwargs)
|
|
)
|
|
generations.append([Generation(text=text)])
|
|
return LLMResult(generations=generations)
|
|
|
|
async def _agenerate(
|
|
self,
|
|
prompts: List[str],
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[AsyncCallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> LLMResult:
|
|
"""Run the LLM on the given prompt and input."""
|
|
generations = []
|
|
new_arg_supported = inspect.signature(self._acall).parameters.get("run_manager")
|
|
for prompt in prompts:
|
|
text = (
|
|
await self._acall(prompt, stop=stop, run_manager=run_manager, **kwargs)
|
|
if new_arg_supported
|
|
else await self._acall(prompt, stop=stop, **kwargs)
|
|
)
|
|
generations.append([Generation(text=text)])
|
|
return LLMResult(generations=generations)
|