Skip to content

Commit 588c499

Browse files
committed
Bump version: 2.13.41 → 2.13.42
1 parent eddfa51 commit 588c499

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.13.41
2+
current_version = 2.13.42
33
commit = True
44
tag = True
55

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ repos:
2424
- id: end-of-file-fixer
2525
- id: no-commit-to-branch
2626
- repo: https://github.com/psf/black
27-
rev: 26.3.0
27+
rev: 26.3.1
2828
hooks:
2929
- id: black
3030
- repo: https://github.com/astral-sh/ruff-pre-commit
31-
rev: v0.15.5
31+
rev: v0.15.6
3232
hooks:
3333
- id: ruff
3434
types_or: [ python, pyi, jupyter ]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN apt update \
5656
&& apt upgrade -y \
5757
&& apt install -y ripgrep tree fd-find curl build-essential libxml2-dev libxslt1-dev python3-dev \
5858
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
59-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow genius-agent>=2.13.41 \
59+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow genius-agent>=2.13.42 \
6060
&& crawl4ai-setup
6161

6262
CMD ["genius-agent"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
![PyPI - Wheel](https://img.shields.io/pypi/wheel/genius-agent)
2121
![PyPI - Implementation](https://img.shields.io/pypi/implementation/genius-agent)
2222

23-
*Version: 2.13.41*
23+
*Version: 2.13.42*
2424

2525
Deploy agents to solve problems using Autogen
2626

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
- "PROVIDER=openai"
2020
- "LLM_BASE_URL=${LLM_BASE_URL:-http://host.docker.internal:1234/v1}"
2121
- "LLM_API_KEY=${LLM_API_KEY:-llama}"
22-
- "MODEL_ID=${MODEL_ID:-qwen/qwen3.5-35b-a3b}"
22+
- "MODEL_ID=${MODEL_ID:-nvidia/nemotron-3-super}"
2323
- "DEBUG=True"
2424
- "ENABLE_WEB_UI=True"
2525
- "ENABLE_OTEL=True"

genius_agent/agent_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
load_identity,
1212
)
1313

14-
__version__ = "2.13.41"
14+
__version__ = "2.13.42"
1515

1616
logging.basicConfig(
1717
level=logging.INFO,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "genius-agent"
7-
version = "2.13.41"
7+
version = "2.13.42"
88
description = "GeniusAgent Search Engine MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,7 +18,7 @@ classifiers = [
1818
requires-python = ">=3.10"
1919
dependencies = [
2020
"universal-skills[web-crawler,web-search]",
21-
"agent-utilities[agent,logfire]>=0.2.26"]
21+
"agent-utilities[agent,logfire]>=0.2.27"]
2222

2323
[project.scripts]
2424
genius-agent = "genius_agent.agent_server:agent_server"

scripts/validate_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async def main():
2020
try:
2121
agent = create_agent(
2222
provider="openai",
23-
model_id=os.getenv("MODEL_ID", "qwen/qwen3.5-35b-a3b"),
23+
model_id=os.getenv("MODEL_ID", "nvidia/nemotron-3-super"),
2424
base_url=os.getenv("LLM_BASE_URL", "http://host.docker.internal:1234/v1"),
2525
api_key=os.getenv("LLM_API_KEY", "ollama"),
2626
mcp_url=os.getenv("MCP_URL", "http://localhost:8005/mcp"),

0 commit comments

Comments
 (0)