Update app.py
Browse files
app.py
CHANGED
|
@@ -6,7 +6,8 @@ groq_api_key = os.environ.get('groq2')
|
|
| 6 |
## LLM used for RAG
|
| 7 |
from langchain_groq import ChatGroq
|
| 8 |
|
| 9 |
-
llm = ChatGroq(model="llama-3.3-70b-specdec",api_key=groq_api_key )
|
|
|
|
| 10 |
|
| 11 |
from langchain.prompts import ChatPromptTemplate, PromptTemplate
|
| 12 |
from langchain.output_parsers import ResponseSchema, StructuredOutputParser
|
|
|
|
| 6 |
## LLM used for RAG
|
| 7 |
from langchain_groq import ChatGroq
|
| 8 |
|
| 9 |
+
#llm = ChatGroq(model="llama-3.3-70b-specdec",api_key=groq_api_key )
|
| 10 |
+
llm = ChatGroq(model="Qwen-Qwq-32b",api_key=groq_api_key )
|
| 11 |
|
| 12 |
from langchain.prompts import ChatPromptTemplate, PromptTemplate
|
| 13 |
from langchain.output_parsers import ResponseSchema, StructuredOutputParser
|