[PR #348] [CLOSED] Deep Search API-first (no tests) #1776

Closed
opened 2026-04-18 19:30:09 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/348
Author: @efesuai99
Created: 9/23/2025
Status: Closed

Base: mainHead: feature/deep-search-lite


📝 Commits (10+)

  • 3317ff5 Added Dev Container Folder
  • ed5fcba Replace deep_research with search+scrape
  • 6b38579 wire OpenAI via env var and client, add usage test, remove provider stubs
  • c77ac51 Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations
  • 91e8022 Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations
  • 5b990ac Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations
  • caef115 Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations
  • 89c11f6 Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations
  • 247c58b Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations
  • e64e319 Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations

📊 Changes

18 files changed (+651 additions, -363 deletions)

View changed files

.devcontainer/devcontainer.json (+33 -0)
.streamlit/config.toml (+6 -0)
CHANGELOG.md (+8 -0)
📝 advanced_ai_agents/single_agent_apps/ai_deep_research_agent/deep_research_openai.py (+36 -26)
📝 advanced_ai_agents/single_agent_apps/ai_deep_research_agent/requirements.txt (+1 -2)
requirements.txt (+3 -0)
runtime.txt (+1 -0)
📝 starter_ai_agents/opeani_research_agent/README.md (+70 -0)
starter_ai_agents/opeani_research_agent/__init__.py (+1 -0)
starter_ai_agents/opeani_research_agent/helpers.py (+75 -0)
starter_ai_agents/opeani_research_agent/openai_researcher_agent.py (+57 -0)
📝 starter_ai_agents/opeani_research_agent/requirements.txt (+3 -5)
📝 starter_ai_agents/opeani_research_agent/research_agent.py (+102 -330)
starter_ai_agents/opeani_research_agent/tools/search_perplexity.py (+53 -0)
starter_ai_agents/opeani_research_agent/tools/search_tavily.py (+44 -0)
tools/fetch_firecrawl.py (+51 -0)
tools/search_perplexity.py (+58 -0)
tools/search_tavily.py (+49 -0)

📄 Description

one-liner of what changed (Perplexity + Tavily + Firecrawl search path, VERIFY gates, Diagnostics tab).


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Shubhamsaboo/awesome-llm-apps/pull/348 **Author:** [@efesuai99](https://github.com/efesuai99) **Created:** 9/23/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/deep-search-lite` --- ### 📝 Commits (10+) - [`3317ff5`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/3317ff5bc05198c79d4c70f42d55ffd0e9db9857) Added Dev Container Folder - [`ed5fcba`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/ed5fcbab26798f6cabbee146da850b1cb2fcfda1) Replace deep_research with search+scrape - [`6b38579`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/6b38579502abe73c745e778d9f6336412a99c80c) wire OpenAI via env var and client, add usage test, remove provider stubs - [`c77ac51`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/c77ac5171d6296fd0ab45f0a7a163d4cfcf17123) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations - [`91e8022`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/91e8022f4b68c473a0939aa8c281eadce93cedf9) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations - [`5b990ac`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/5b990acd83c5583bc39f316fa1f1b3c542b75549) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations - [`caef115`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/caef115d20821f57340bc604291eb662f52f74ce) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations - [`89c11f6`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/89c11f60aa7bfdcaced00fcfdd3a79652f9ff98e) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations - [`247c58b`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/247c58bf6ce8a584640990ecd24d98f88763f127) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations - [`e64e319`](https://github.com/Shubhamsaboo/awesome-llm-apps/commit/e64e31956051cc7fcddbc41745ebd2d041a08bb1) Deep research autopilot: query planner, open search mode, time window controls, ranking, strict citations ### 📊 Changes **18 files changed** (+651 additions, -363 deletions) <details> <summary>View changed files</summary> ➕ `.devcontainer/devcontainer.json` (+33 -0) ➕ `.streamlit/config.toml` (+6 -0) ➕ `CHANGELOG.md` (+8 -0) 📝 `advanced_ai_agents/single_agent_apps/ai_deep_research_agent/deep_research_openai.py` (+36 -26) 📝 `advanced_ai_agents/single_agent_apps/ai_deep_research_agent/requirements.txt` (+1 -2) ➕ `requirements.txt` (+3 -0) ➕ `runtime.txt` (+1 -0) 📝 `starter_ai_agents/opeani_research_agent/README.md` (+70 -0) ➕ `starter_ai_agents/opeani_research_agent/__init__.py` (+1 -0) ➕ `starter_ai_agents/opeani_research_agent/helpers.py` (+75 -0) ➕ `starter_ai_agents/opeani_research_agent/openai_researcher_agent.py` (+57 -0) 📝 `starter_ai_agents/opeani_research_agent/requirements.txt` (+3 -5) 📝 `starter_ai_agents/opeani_research_agent/research_agent.py` (+102 -330) ➕ `starter_ai_agents/opeani_research_agent/tools/search_perplexity.py` (+53 -0) ➕ `starter_ai_agents/opeani_research_agent/tools/search_tavily.py` (+44 -0) ➕ `tools/fetch_firecrawl.py` (+51 -0) ➕ `tools/search_perplexity.py` (+58 -0) ➕ `tools/search_tavily.py` (+49 -0) </details> ### 📄 Description one-liner of what changed (Perplexity + Tavily + Firecrawl search path, VERIFY gates, Diagnostics tab). --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-18 19:30:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-llm-apps#1776