bstraehle commited on
Commit
b03208e
·
1 Parent(s): cde25a7

Update rag.py

Browse files
Files changed (1) hide show
  1. rag.py +1 -4
rag.py CHANGED
@@ -99,9 +99,8 @@ def llm_chain(config, openai_api_key, prompt):
99
  llm_chain = LLMChain(llm = get_llm(config, openai_api_key),
100
  prompt = LLM_CHAIN_PROMPT)
101
 
102
- completion = llm_chain.generate([{"question": prompt}])
103
-
104
  with get_openai_callback() as cb:
 
105
  print(cb)
106
 
107
  return completion, llm_chain
@@ -123,6 +122,4 @@ def rag_chain(config, openai_api_key, rag_option, prompt):
123
  completion = rag_chain({"query": prompt})
124
  print(cb)
125
 
126
- print("###" + str(completion))
127
-
128
  return completion, rag_chain
 
99
  llm_chain = LLMChain(llm = get_llm(config, openai_api_key),
100
  prompt = LLM_CHAIN_PROMPT)
101
 
 
 
102
  with get_openai_callback() as cb:
103
+ completion = llm_chain.generate([{"question": prompt}])
104
  print(cb)
105
 
106
  return completion, llm_chain
 
122
  completion = rag_chain({"query": prompt})
123
  print(cb)
124
 
 
 
125
  return completion, rag_chain