2023-09-21 06:44:17 +00:00
|
|
|
from typing import Any, Dict, List, Optional
|
2023-09-19 23:29:50 +00:00
|
|
|
|
2023-09-21 06:44:17 +00:00
|
|
|
from langchain.chains.base import Chain
|
2023-09-19 23:29:50 +00:00
|
|
|
from langchain.chains.llm import LLMChain
|
2023-09-21 06:44:17 +00:00
|
|
|
from langchain.prompts import PromptTemplate
|
|
|
|
from langchain.schema.language_model import BaseLanguageModel
|
2023-09-19 23:29:50 +00:00
|
|
|
|
|
|
|
from langchain_experimental.synthetic_data.prompts import SENTENCE_PROMPT
|
|
|
|
|
|
|
|
|
|
|
|
def create_data_generation_chain(
|
|
|
|
llm: BaseLanguageModel,
|
|
|
|
prompt: Optional[PromptTemplate] = None,
|
|
|
|
) -> Chain:
|
|
|
|
"""Creates a chain that generates synthetic sentences with
|
|
|
|
provided fields.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
llm: The language model to use.
|
|
|
|
prompt: Prompt to feed the language model with.
|
|
|
|
If not provided, the default one will be used.
|
|
|
|
"""
|
|
|
|
prompt = prompt or SENTENCE_PROMPT
|
|
|
|
return LLMChain(
|
|
|
|
llm=llm,
|
|
|
|
prompt=prompt,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class DatasetGenerator:
|
|
|
|
"""Generates synthetic dataset with a given language model."""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
llm: BaseLanguageModel,
|
|
|
|
sentence_preferences: Optional[Dict[str, Any]] = None,
|
|
|
|
):
|
|
|
|
self.generator = create_data_generation_chain(llm)
|
|
|
|
self.sentence_preferences = sentence_preferences or {}
|
|
|
|
|
|
|
|
def __call__(self, fields_collection: List[List[Any]]) -> List[Dict[str, Any]]:
|
|
|
|
results: List[Dict[str, Any]] = []
|
|
|
|
for fields in fields_collection:
|
|
|
|
results.append(
|
|
|
|
self.generator(
|
|
|
|
{"fields": fields, "preferences": self.sentence_preferences}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return results
|