mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-11 18:16:12 +00:00
Upgrade to using a literal for specifying the extra which is the recommended approach in pydantic 2. This works correctly also in pydantic v1. ```python from pydantic.v1 import BaseModel class Foo(BaseModel, extra="forbid"): x: int Foo(x=5, y=1) ``` And ```python from pydantic.v1 import BaseModel class Foo(BaseModel): x: int class Config: extra = "forbid" Foo(x=5, y=1) ``` ## Enum -> literal using grit pattern: ``` engine marzano(0.1) language python or { `extra=Extra.allow` => `extra="allow"`, `extra=Extra.forbid` => `extra="forbid"`, `extra=Extra.ignore` => `extra="ignore"` } ``` Resorted attributes in config and removed doc-string in case we will need to deal with going back and forth between pydantic v1 and v2 during the 0.3 release. (This will reduce merge conflicts.) ## Sort attributes in Config: ``` engine marzano(0.1) language python function sort($values) js { return $values.text.split(',').sort().join("\n"); } class_definition($name, $body) as $C where { $name <: `Config`, $body <: block($statements), $values = [], $statements <: some bubble($values) assignment() as $A where { $values += $A }, $body => sort($values), } ```
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
from typing import Any, Dict, List, Mapping, Optional
|
|
|
|
from langchain_core.callbacks import CallbackManagerForLLMRun
|
|
from langchain_core.language_models.llms import LLM
|
|
from langchain_core.utils import pre_init
|
|
|
|
|
|
class ManifestWrapper(LLM):
|
|
"""HazyResearch's Manifest library."""
|
|
|
|
client: Any #: :meta private:
|
|
llm_kwargs: Optional[Dict] = None
|
|
|
|
class Config:
|
|
extra = "forbid"
|
|
|
|
@pre_init
|
|
def validate_environment(cls, values: Dict) -> Dict:
|
|
"""Validate that python package exists in environment."""
|
|
try:
|
|
from manifest import Manifest
|
|
|
|
if not isinstance(values["client"], Manifest):
|
|
raise ValueError
|
|
except ImportError:
|
|
raise ImportError(
|
|
"Could not import manifest python package. "
|
|
"Please install it with `pip install manifest-ml`."
|
|
)
|
|
return values
|
|
|
|
@property
|
|
def _identifying_params(self) -> Mapping[str, Any]:
|
|
kwargs = self.llm_kwargs or {}
|
|
return {
|
|
**self.client.client_pool.get_current_client().get_model_params(),
|
|
**kwargs,
|
|
}
|
|
|
|
@property
|
|
def _llm_type(self) -> str:
|
|
"""Return type of llm."""
|
|
return "manifest"
|
|
|
|
def _call(
|
|
self,
|
|
prompt: str,
|
|
stop: Optional[List[str]] = None,
|
|
run_manager: Optional[CallbackManagerForLLMRun] = None,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""Call out to LLM through Manifest."""
|
|
if stop is not None and len(stop) != 1:
|
|
raise NotImplementedError(
|
|
f"Manifest currently only supports a single stop token, got {stop}"
|
|
)
|
|
params = self.llm_kwargs or {}
|
|
params = {**params, **kwargs}
|
|
if stop is not None:
|
|
params["stop_token"] = stop
|
|
return self.client.run(prompt, **params)
|