deepseek LLM distilled
Browse files
rag.py
CHANGED
|
@@ -5,7 +5,7 @@ import pandas as pd
|
|
| 5 |
#lm = dspy.LM('ollama_chat/deepseek-r1', api_base='http://localhost:11434', api_key='')
|
| 6 |
#lm = dspy.LM('huggingface/Qwen/Qwen2.5-Coder-32B-Instruct')
|
| 7 |
#lm = dspy.LM('huggingface/meta-llama/Llama-3.2-1B')
|
| 8 |
-
lm = dspy.LM('groq/
|
| 9 |
dspy.configure(lm=lm)
|
| 10 |
|
| 11 |
df = pd.read_csv("product2.csv")
|
|
|
|
| 5 |
#lm = dspy.LM('ollama_chat/deepseek-r1', api_base='http://localhost:11434', api_key='')
|
| 6 |
#lm = dspy.LM('huggingface/Qwen/Qwen2.5-Coder-32B-Instruct')
|
| 7 |
#lm = dspy.LM('huggingface/meta-llama/Llama-3.2-1B')
|
| 8 |
+
lm = dspy.LM('groq/qwen-qwq-32b')
|
| 9 |
dspy.configure(lm=lm)
|
| 10 |
|
| 11 |
df = pd.read_csv("product2.csv")
|
tool.py
CHANGED
|
@@ -7,7 +7,7 @@ from tavily import TavilyClient
|
|
| 7 |
#lm = dspy.LM('ollama_chat/deepseek-r1', api_base='http://localhost:11434', api_key='')
|
| 8 |
#lm = dspy.LM('huggingface/Qwen/Qwen2.5-Coder-32B-Instruct')
|
| 9 |
#lm = dspy.LM('huggingface/meta-llama/Llama-3.2-1B')
|
| 10 |
-
lm = dspy.LM('groq/
|
| 11 |
dspy.configure(lm=lm)
|
| 12 |
|
| 13 |
search_client = TavilyClient(api_key=os.environ["T_TOKEN"])
|
|
|
|
| 7 |
#lm = dspy.LM('ollama_chat/deepseek-r1', api_base='http://localhost:11434', api_key='')
|
| 8 |
#lm = dspy.LM('huggingface/Qwen/Qwen2.5-Coder-32B-Instruct')
|
| 9 |
#lm = dspy.LM('huggingface/meta-llama/Llama-3.2-1B')
|
| 10 |
+
lm = dspy.LM('groq/qwen-qwq-32b')
|
| 11 |
dspy.configure(lm=lm)
|
| 12 |
|
| 13 |
search_client = TavilyClient(api_key=os.environ["T_TOKEN"])
|