Update my_agent.py
Browse files- my_agent.py +1 -1
my_agent.py
CHANGED
|
@@ -39,7 +39,7 @@ class BasicAgent:
|
|
| 39 |
do_sample=False,
|
| 40 |
repetition_penalty=1.03,
|
| 41 |
)
|
| 42 |
-
llm_qa = ChatHuggingFace(llm=model, verbose=True)
|
| 43 |
# llm = ChatOllama(
|
| 44 |
# model="qwen3:0.6b",
|
| 45 |
# api_base="http://localhost:11434", # replace with
|
|
|
|
| 39 |
do_sample=False,
|
| 40 |
repetition_penalty=1.03,
|
| 41 |
)
|
| 42 |
+
self.llm_qa = ChatHuggingFace(llm=model, verbose=True)
|
| 43 |
# llm = ChatOllama(
|
| 44 |
# model="qwen3:0.6b",
|
| 45 |
# api_base="http://localhost:11434", # replace with
|