File size: 2,047 Bytes
d660b02
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from langchain.prompts import PromptTemplate

from .base import PromptTemplateFactory


class QueryExpansionTemplate(PromptTemplateFactory):
    prompt: str = """You are an AI language model assistant. Your task is to generate {expand_to_n}

    different versions of the given user question to retrieve relevant documents from a vector

    database. By generating multiple perspectives on the user question, your goal is to help

    the user overcome some of the limitations of the distance-based similarity search.

    Provide these alternative questions seperated by '{separator}'.

    Original question: {question}"""

    @property
    def separator(self) -> str:
        return "#next-question#"

    def create_template(self, expand_to_n: int) -> PromptTemplate:
        return PromptTemplate(
            template=self.prompt,
            input_variables=["question"],
            partial_variables={
                "separator": self.separator,
                "expand_to_n": expand_to_n,
            },
        )


class SelfQueryTemplate(PromptTemplateFactory):
    prompt: str = """You are an AI language model assistant. Your task is to extract information from a user question.

    The required information that needs to be extracted is the user name or user id. 

    Your response should consists of only the extracted user name (e.g., John Doe) or id (e.g. 1345256), nothing else.

    If the user question does not contain any user name or id, you should return the following token: none.

    

    For example:

    QUESTION 1:

    My name is Paul Iusztin and I want a post about...

    RESPONSE 1:

    Paul Iusztin

    

    QUESTION 2:

    I want to write a post about...

    RESPONSE 2:

    none

    

    QUESTION 3:

    My user id is 1345256 and I want to write a post about...

    RESPONSE 3:

    1345256

    

    User question: {question}"""

    def create_template(self) -> PromptTemplate:
        return PromptTemplate(template=self.prompt, input_variables=["question"])