Vageesh1 commited on
Commit
5c25080
·
1 Parent(s): 306ccba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,7 +19,7 @@ trait_content_df['Title'].fillna(method='ffill',inplace=True)
19
  trait_content_df['Question'].fillna(method='ffill',inplace=True)
20
 
21
  template = """
22
- Imagine you are a person that is looking for making a cool and a creative dating app bio. Craft distinctive responses for each user based on traits extracted and refer from the content provided for each trait, even if the prompts are similar.Use the content for reference only don't connect the references for a description and make a single bio for all traits combined. Respond it in 2nd person view. Avoid using the same sentences for different users while keeping the response within 100 words.
23
  {history}
24
  Me:{human_input}
25
  Jack:
@@ -30,7 +30,7 @@ prompt = PromptTemplate(
30
  )
31
 
32
  llm_chain = LLMChain(
33
- llm = ChatOpenAI(temperature=1.0,model_name='gpt-3.5-turbo'),
34
  prompt=prompt,
35
  verbose=True,
36
  memory=ConversationBufferWindowMemory(k=0)
 
19
  trait_content_df['Question'].fillna(method='ffill',inplace=True)
20
 
21
  template = """
22
+ Imagine you are a person that is looking for making a cool dating app bio. Craft distinctive responses for each user based on traits extracted and refer from the content provided for each trait, even if the prompts are similar.Make a single Bio for all traits at once, no need to make different for each trait. Respond it in 2nd person view. Avoid using the same sentences for different users while keeping the response within 100 words.
23
  {history}
24
  Me:{human_input}
25
  Jack:
 
30
  )
31
 
32
  llm_chain = LLMChain(
33
+ llm = ChatOpenAI(temperature=1.3,model_name='gpt-3.5-turbo'),
34
  prompt=prompt,
35
  verbose=True,
36
  memory=ConversationBufferWindowMemory(k=0)