Skip to content

Commit d9ff040

Browse files
committed
fix: websearch tool fixed
1 parent cdd5100 commit d9ff040

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
TAG_NAME="${{ github.event.release.tag_name }}"
3535
if [ -z "$TAG_NAME" ]; then
3636
echo "No release tag found. Generating dev version."
37-
VERSION="0.1.3.dev${{ github.run_number }}"
37+
VERSION="0.1.31.dev${{ github.run_number }}"
3838
else
3939
echo "GitHub Release Tag: $TAG_NAME"
4040
VERSION=$(echo "$TAG_NAME" | sed 's/^v//')

nexus/tools/web_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def web_search(
3333
results: list[str] = []
3434
with DDGS() as ddgs:
3535
search_results = ddgs.text(
36-
keywords=query,
36+
query,
3737
max_results=max_results,
3838
)
3939

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agent-nexus-cli"
3-
version = "0.1.3"
3+
version = "0.1.31"
44
description = "Nexus is an autonomous CLI coding agent powered by LangGraph and MCP. It plans complex tasks, persists context via SQLite, and securely orchestrates tools. Features specialized Architect/Code modes, real-time metrics, and human-in-the-loop safety for production workflows."
55
readme = "readme.md"
66
requires-python = ">=3.14.2"

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!-- Project Status -->
88
[![Project Status: Active](https://img.shields.io/badge/Project%20Status-Active-brightgreen)](https://github.com/DataRohit/nexus)
99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/DataRohit/Nexus/blob/master/license)
10-
[![Version](https://img.shields.io/badge/version-0.1.3-blue)](#)
10+
[![Version](https://img.shields.io/badge/version-0.1.31-blue)](#)
1111

1212
<!-- Core Technologies -->
1313
[![Python 3.14](https://img.shields.io/badge/python-3.14.2-blue.svg?logo=python&logoColor=white)](https://www.python.org/downloads/)

0 commit comments

Comments
 (0)