simonw--llm
b5cd563b53
This allows default values to be filled for templates. For example: ```yaml prompt: Summarize this text in the voice of $voice defaults: voice: GlaDOS ```
56 行
1.6 KiB
Python
56 行
1.6 KiB
Python
from pydantic import BaseModel
|
|
import string
|
|
from typing import Optional
|
|
from .hookspecs import hookimpl # noqa
|
|
from .hookspecs import hookspec # noqa
|
|
|
|
|
|
class Template(BaseModel):
|
|
name: str
|
|
prompt: Optional[str]
|
|
system: Optional[str]
|
|
model: Optional[str]
|
|
defaults: Optional[dict]
|
|
|
|
class Config:
|
|
extra = "forbid"
|
|
|
|
class MissingVariables(Exception):
|
|
pass
|
|
|
|
def execute(self, input, params=None):
|
|
params = params or {}
|
|
params["input"] = input
|
|
if self.defaults:
|
|
for k, v in self.defaults.items():
|
|
if k not in params:
|
|
params[k] = v
|
|
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, params):
|
|
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):
|
|
return [
|
|
match.group("named")
|
|
for match in string_template.pattern.finditer(string_template.template)
|
|
]
|