fraud prevention
Browse files- controls.py +2 -2
controls.py
CHANGED
|
@@ -5,13 +5,13 @@ from dspy.predict.react import Tool
|
|
| 5 |
from tavily import TavilyClient
|
| 6 |
|
| 7 |
|
| 8 |
-
lm = dspy.LM('ollama_chat/llama3.2', api_base='http://localhost:11434', api_key='')
|
| 9 |
#lm = dspy.LM('ollama_chat/deepseek-r1', api_base='http://localhost:11434', api_key='')
|
| 10 |
#lm = dspy.LM('ollama_chat/qwq', api_base='http://localhost:11434', api_key='')
|
| 11 |
#lm = dspy.LM('ollama_chat/deepscaler', api_base='http://localhost:11434', api_key='')
|
| 12 |
#lm = dspy.LM('huggingface/Qwen/Qwen2.5-Coder-32B-Instruct')
|
| 13 |
#lm = dspy.LM('huggingface/meta-llama/Llama-3.2-1B')
|
| 14 |
-
|
| 15 |
dspy.configure(lm=lm)
|
| 16 |
|
| 17 |
search_client = TavilyClient(api_key=os.environ["T_TOKEN"])
|
|
|
|
| 5 |
from tavily import TavilyClient
|
| 6 |
|
| 7 |
|
| 8 |
+
#lm = dspy.LM('ollama_chat/llama3.2', api_base='http://localhost:11434', api_key='')
|
| 9 |
#lm = dspy.LM('ollama_chat/deepseek-r1', api_base='http://localhost:11434', api_key='')
|
| 10 |
#lm = dspy.LM('ollama_chat/qwq', api_base='http://localhost:11434', api_key='')
|
| 11 |
#lm = dspy.LM('ollama_chat/deepscaler', api_base='http://localhost:11434', api_key='')
|
| 12 |
#lm = dspy.LM('huggingface/Qwen/Qwen2.5-Coder-32B-Instruct')
|
| 13 |
#lm = dspy.LM('huggingface/meta-llama/Llama-3.2-1B')
|
| 14 |
+
lm = dspy.LM('deepseek-r1-distill-qwen-32b')
|
| 15 |
dspy.configure(lm=lm)
|
| 16 |
|
| 17 |
search_client = TavilyClient(api_key=os.environ["T_TOKEN"])
|