Update contextualize_chain.py
Browse files- contextualize_chain.py +1 -0
contextualize_chain.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
from langchain.chains import LLMChain
|
| 2 |
from langchain_groq import ChatGroq
|
|
|
|
| 3 |
from prompts import contextualize_prompt # A new prompt for contextualizing the query
|
| 4 |
|
| 5 |
class ContextualizeChain(LLMChain):
|
|
|
|
| 1 |
from langchain.chains import LLMChain
|
| 2 |
from langchain_groq import ChatGroq
|
| 3 |
+
import os
|
| 4 |
from prompts import contextualize_prompt # A new prompt for contextualizing the query
|
| 5 |
|
| 6 |
class ContextualizeChain(LLMChain):
|