Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions plugins/iterative-research/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.9.2] - 2026-08-15

### Fixed
- Integration tests: Robust Open WebUI container startup verification to prevent transient CI network handshake failures.

## [0.9.1] - 2026-08-15

### Added
Expand Down
31 changes: 24 additions & 7 deletions plugins/iterative-research/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
title: Iterative Deep Research Agent
author: toolfab-ai
author_url: https://github.com/toolfab-ai/
version: 0.9.1
version: 0.9.2
description: Autonomous multi-turn web search & scraping loops to synthesize detailed cited research-reports.
license: MIT
github: https://github.com/toolfab-ai/owui-plugins
"""

from __future__ import annotations


class Pipe:
pass
class Pipe: pass


from datetime import datetime
Expand Down Expand Up @@ -54,6 +52,8 @@ async def _emit_citation(
import json
import logging
import re
from datetime import datetime
from typing import Any

try:
from fastapi import Request
Expand Down Expand Up @@ -177,7 +177,8 @@ def _parse_json_completions(self, text: str) -> dict[str, Any]:

import asyncio
import logging
from typing import AsyncGenerator, Optional
import re
from typing import Any, AsyncGenerator, Awaitable, Callable, Optional

try:
from fastapi import Request
Expand Down Expand Up @@ -489,9 +490,12 @@ async def _stream_research(
yield chunk



import asyncio
import ipaddress
import logging
import socket
from typing import Optional
from urllib.parse import urlparse

import httpx
Expand Down Expand Up @@ -629,6 +633,9 @@ async def _scrape_url(self, url: str) -> Optional[dict[str, str]]:


import logging
from typing import Any, Optional

import httpx

# ---------------------------------------------------------------------------
# Logging
Expand Down Expand Up @@ -709,6 +716,8 @@ async def _search_query(
return []


from typing import Any, AsyncGenerator, Awaitable, Callable, Optional

try:
from fastapi import Request
except ImportError:
Expand Down Expand Up @@ -792,9 +801,17 @@ async def _synthesize_report(
)



import logging

# --- Shared: update_notifier.notifier ---

import logging
import re
import time
from typing import Any, Optional

import httpx

# ---------------------------------------------------------------------------
# Configuration
Expand Down Expand Up @@ -1013,7 +1030,6 @@ async def _get_update_notification(

return None


# --- End Shared ---

# ---------------------------------------------------------------------------
Expand Down Expand Up @@ -1101,7 +1117,7 @@ class UserValves(BaseModel):


import logging
from typing import Union
from typing import Any, AsyncGenerator, Awaitable, Callable, Optional, Union

try:
from fastapi import Request
Expand All @@ -1113,6 +1129,7 @@ class Request: # type: ignore[no-redef]
pass



# ---------------------------------------------------------------------------
# Configuration Mapping: key -> (Valves_attr, UserValves_attr)
# ---------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion plugins/iterative-research/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "iterative-research-pipe"
version = "0.9.1"
version = "0.9.2"
description = "Iterative Deep Research Pipe for Open WebUI"
requires-python = ">=3.11"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion plugins/iterative-research/src/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Iterative Deep Research Agent
author: toolfab-ai
author_url: https://github.com/toolfab-ai/
version: 0.9.1
version: 0.9.2
description: Autonomous multi-turn web search & scraping loops to synthesize detailed cited research-reports.
license: MIT
github: https://github.com/toolfab-ai/owui-plugins
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def setup_method(self) -> None:

def test_get_current_version(self) -> None:
# Should match the version from the module docstring
assert self.pipe._get_current_version() == "0.9.1"
assert self.pipe._get_current_version() == "0.9.2"

def test_parse_version(self) -> None:
# Standard stable major.minor.patch:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ markers = [
[tool.ruff]
target-version = "py311"
line-length = 100
extend-exclude = ["*.md"]
extend-exclude = ["*.md", "**/plugin.py"]

[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
Expand Down
Loading