[PR #173] [MERGED] Alwrity keyword research #584

Closed
opened 2026-03-13 20:58:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AJaySi/ALwrity/pull/173
Author: @AJaySi
Created: 4/5/2025
Status: Merged
Merged: 4/6/2025
Merged by: @AJaySi

Base: mainHead: alwrity_keyword_research


📝 Commits (10+)

  • 6c833e2 Made changes to Getting started with ALwrity and added lot of details on API keys
  • d6c0bc1 Google Search Grounded results, Content Calendar Ideator, Competitor Analysis, and Keyword Researcher
  • 65f452b Google Grounded Search and Styling Fixes
  • 1e588a0 Merge branch 'main' into new_alwrity
  • dcd8917 ALwrity AI Keyword Web Researcher
  • 8f09899 Merge branch 'new_alwrity' of https://github.com/AJaySi/AI-Writer into new_alwrity
  • c40ce6c Google Search Grounded results, Content Calendar Ideator, Competitor Analysis, and Keyword Researcher
  • b4660d9 Google Grounded Search and Styling Fixes
  • 3ffb563 ALwrity AI Keyword Web Researcher
  • b1d15b7 Merge branch 'new_alwrity' of https://github.com/AJaySi/AI-Writer into new_alwrity

📊 Changes

25 files changed (+4044 additions, -862 deletions)

View changed files

📝 .gitignore (+66 -0)
📝 alwrity.py (+187 -94)
lib/ai_web_researcher/.gpt_online_researcher.py.swp (+0 -0)
lib/ai_web_researcher/gemini_grounding_search_streamlit.py (+155 -0)
📝 lib/ai_web_researcher/google_trends_researcher.py (+66 -119)
📝 lib/ai_web_researcher/gpt_online_researcher.py (+671 -37)
📝 lib/ai_web_researcher/metaphor_basic_neural_web_search.py (+362 -33)
📝 lib/ai_web_researcher/tavily_ai_search.py (+83 -47)
lib/alwrity_ui/display_google_serp_results.py (+277 -0)
lib/alwrity_ui/google_trends_ui.py (+458 -0)
lib/alwrity_ui/keyword_web_researcher.py (+529 -0)
lib/utils/alwrity_sidebar.py (+0 -244)
📝 lib/utils/alwrity_utils.py (+0 -20)
📝 lib/utils/api_key_manager/components/personalization_setup.py (+13 -6)
📝 lib/utils/content_generators.py (+53 -16)
lib/utils/settings_page.py (+438 -0)
📝 lib/utils/style_utils.py (+114 -46)
📝 lib/utils/test_config_settings.py (+2 -2)
📝 lib/utils/ui_setup.py (+62 -28)
lib/workspace/AskAlwrity-min.ico (+0 -0)

...and 5 more files

📄 Description

Better insights from AI by feeding in AI research from Tavily and Metaphor.


🔄 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/AJaySi/ALwrity/pull/173 **Author:** [@AJaySi](https://github.com/AJaySi) **Created:** 4/5/2025 **Status:** ✅ Merged **Merged:** 4/6/2025 **Merged by:** [@AJaySi](https://github.com/AJaySi) **Base:** `main` ← **Head:** `alwrity_keyword_research` --- ### 📝 Commits (10+) - [`6c833e2`](https://github.com/AJaySi/ALwrity/commit/6c833e277354cdac29b991998663f40a5eae7c1b) Made changes to Getting started with ALwrity and added lot of details on API keys - [`d6c0bc1`](https://github.com/AJaySi/ALwrity/commit/d6c0bc11ae9fd26ecbbb5b739fcf4bda884bc727) Google Search Grounded results, Content Calendar Ideator, Competitor Analysis, and Keyword Researcher - [`65f452b`](https://github.com/AJaySi/ALwrity/commit/65f452be0590c1d696321a9cb338a0f3b9f8b2b3) Google Grounded Search and Styling Fixes - [`1e588a0`](https://github.com/AJaySi/ALwrity/commit/1e588a0f022e719700df413ddd05fd7c539fffea) Merge branch 'main' into new_alwrity - [`dcd8917`](https://github.com/AJaySi/ALwrity/commit/dcd8917805261ffe59f067566391d16472115474) ALwrity AI Keyword Web Researcher - [`8f09899`](https://github.com/AJaySi/ALwrity/commit/8f09899dff20f51e9a131f4ef31ab10b404842bd) Merge branch 'new_alwrity' of https://github.com/AJaySi/AI-Writer into new_alwrity - [`c40ce6c`](https://github.com/AJaySi/ALwrity/commit/c40ce6ce4c2a9e3f0e1a766c47b29e2d6836295d) Google Search Grounded results, Content Calendar Ideator, Competitor Analysis, and Keyword Researcher - [`b4660d9`](https://github.com/AJaySi/ALwrity/commit/b4660d9d9829731fa4d4250628d0a26972ee8c5a) Google Grounded Search and Styling Fixes - [`3ffb563`](https://github.com/AJaySi/ALwrity/commit/3ffb563d4044b9f0b3e9a095c4442fda00e2675e) ALwrity AI Keyword Web Researcher - [`b1d15b7`](https://github.com/AJaySi/ALwrity/commit/b1d15b796c603e298d35845ed972d54abf823f82) Merge branch 'new_alwrity' of https://github.com/AJaySi/AI-Writer into new_alwrity ### 📊 Changes **25 files changed** (+4044 additions, -862 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+66 -0) 📝 `alwrity.py` (+187 -94) ➖ `lib/ai_web_researcher/.gpt_online_researcher.py.swp` (+0 -0) ➕ `lib/ai_web_researcher/gemini_grounding_search_streamlit.py` (+155 -0) 📝 `lib/ai_web_researcher/google_trends_researcher.py` (+66 -119) 📝 `lib/ai_web_researcher/gpt_online_researcher.py` (+671 -37) 📝 `lib/ai_web_researcher/metaphor_basic_neural_web_search.py` (+362 -33) 📝 `lib/ai_web_researcher/tavily_ai_search.py` (+83 -47) ➕ `lib/alwrity_ui/display_google_serp_results.py` (+277 -0) ➕ `lib/alwrity_ui/google_trends_ui.py` (+458 -0) ➕ `lib/alwrity_ui/keyword_web_researcher.py` (+529 -0) ➖ `lib/utils/alwrity_sidebar.py` (+0 -244) 📝 `lib/utils/alwrity_utils.py` (+0 -20) 📝 `lib/utils/api_key_manager/components/personalization_setup.py` (+13 -6) 📝 `lib/utils/content_generators.py` (+53 -16) ➕ `lib/utils/settings_page.py` (+438 -0) 📝 `lib/utils/style_utils.py` (+114 -46) 📝 `lib/utils/test_config_settings.py` (+2 -2) 📝 `lib/utils/ui_setup.py` (+62 -28) ➕ `lib/workspace/AskAlwrity-min.ico` (+0 -0) _...and 5 more files_ </details> ### 📄 Description Better insights from AI by feeding in AI research from Tavily and Metaphor. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-13 20:58:20 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ALwrity#584
No description provided.