langchain/libs/experimental/langchain_experimental/synthetic_data/__init__.py
Leonid Ganeline 3dc0f3c371
experimental[patch]: PromptTemplate import fix (#19617)
Changed import of `PromptTemplate` from `langchain` to `langchain_core`
in `langchain_experimental`
2024-03-26 17:03:13 -07:00

51 lines
1.5 KiB
Python

"""Generate **synthetic data** using LLM and few-shot template."""
from typing import Any, Dict, List, Optional
from langchain.chains.base import Chain
from langchain.chains.llm import LLMChain
from langchain_core.language_models import BaseLanguageModel
from langchain_core.prompts import PromptTemplate
from langchain_experimental.synthetic_data.prompts import SENTENCE_PROMPT
def create_data_generation_chain(
llm: BaseLanguageModel,
prompt: Optional[PromptTemplate] = None,
) -> Chain:
"""Create 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:
"""Generate 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