simonw--llm
58 行
1.8 KiB
Python
58 行
1.8 KiB
Python
from pydantic import BaseModel
|
|
import string
|
|
from typing import Optional, Any, Dict, List, Tuple
|
|
|
|
|
|
class Template(BaseModel):
|
|
name: str
|
|
prompt: Optional[str] = None
|
|
system: Optional[str] = None
|
|
model: Optional[str] = None
|
|
defaults: Optional[Dict[str, Any]] = None
|
|
|
|
class Config:
|
|
extra = "forbid"
|
|
|
|
class MissingVariables(Exception):
|
|
pass
|
|
|
|
def evaluate(
|
|
self, input: str, params: Optional[Dict[str, Any]] = None
|
|
) -> Tuple[Optional[str], Optional[str]]:
|
|
params = params or {}
|
|
params["input"] = input
|
|
if self.defaults:
|
|
for k, v in self.defaults.items():
|
|
if k not in params:
|
|
params[k] = v
|
|
prompt: Optional[str] = None
|
|
system: Optional[str] = None
|
|
if not self.prompt:
|
|
system = self.interpolate(self.system, params)
|
|
prompt = input
|
|
else:
|
|
prompt = self.interpolate(self.prompt, params)
|
|
system = self.interpolate(self.system, params)
|
|
return prompt, system
|
|
|
|
@classmethod
|
|
def interpolate(cls, text: Optional[str], params: Dict[str, Any]) -> Optional[str]:
|
|
if not text:
|
|
return text
|
|
# Confirm all variables in text are provided
|
|
string_template = string.Template(text)
|
|
vars = cls.extract_vars(string_template)
|
|
missing = [p for p in vars if p not in params]
|
|
if missing:
|
|
raise cls.MissingVariables(
|
|
"Missing variables: {}".format(", ".join(missing))
|
|
)
|
|
return string_template.substitute(**params)
|
|
|
|
@staticmethod
|
|
def extract_vars(string_template: string.Template) -> List[str]:
|
|
return [
|
|
match.group("named")
|
|
for match in string_template.pattern.finditer(string_template.template)
|
|
]
|