@tiens.nguyen/gonext-local-worker 1.0.62 → 1.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gonext_agent_chat.py +1 -3
- package/package.json +1 -1
package/gonext_agent_chat.py
CHANGED
|
@@ -213,9 +213,7 @@ def run_agent_chat(cfg):
|
|
|
213
213
|
"You have ONE built-in function: `http_request(method, url, headers='', body='')`. "
|
|
214
214
|
"Do NOT import requests, urllib, or any library — call http_request() directly.\n"
|
|
215
215
|
"When you have the answer, ALWAYS end with `final_answer(your_answer)` — this stops the agent.\n"
|
|
216
|
-
"
|
|
217
|
-
"result = http_request(method='GET', url='https://example.com')\n"
|
|
218
|
-
"final_answer(result)\n\n"
|
|
216
|
+
"Call http_request with the URL from the task, then call final_answer with the result.\n\n"
|
|
219
217
|
)
|
|
220
218
|
task_with_hint = tool_hint + "Task: " + task_text
|
|
221
219
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiens.nguyen/gonext-local-worker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.63",
|
|
4
4
|
"description": "Polls GoNext cloud API for async local LLM jobs and runs them against Ollama/OpenAI-compatible servers on this Mac",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|