kevinhug commited on
Commit
93d1163
·
1 Parent(s): ab83b05

deepseek LLM distilled

Browse files
Files changed (2) hide show
  1. rag.py +1 -1
  2. tool.py +1 -1
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/gemma-7b-it')
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/gemma-7b-it')
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"])