OuroborosM commited on
Commit
8b1ae76
·
1 Parent(s): bb0c9ca

update llmchain value

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -701,7 +701,7 @@ agent_ZEROSHOT_REACT_2 = initialize_agent(tools2, GPTfake,
701
  llm_chain = LLMChain(llm=llm, prompt=prompt)
702
  llm_chain_2 = LLMChain(llm=GPTfake, prompt=prompt)
703
 
704
- print("Test LLM Chain", llm_chain_2({'agent_scratchpad':None, 'input':"what is PDP?"}))
705
 
706
  # llm_chain_openai = LLMChain(llm=llm, prompt=prompt_openai, verbose=True)
707
 
 
701
  llm_chain = LLMChain(llm=llm, prompt=prompt)
702
  llm_chain_2 = LLMChain(llm=GPTfake, prompt=prompt)
703
 
704
+ print("Test LLM Chain", llm_chain_2({'agent_scratchpad':"", 'input':"what is PDP?"}))
705
 
706
  # llm_chain_openai = LLMChain(llm=llm, prompt=prompt_openai, verbose=True)
707