[GH-ISSUE #254] 2nd week Actionable items - sept #510

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

Originally created by @DikshaDisciplines on GitHub (Sep 19, 2025).
Original GitHub issue: https://github.com/AJaySi/ALwrity/issues/254

Originally assigned to: @uniqueumesh on GitHub.

2nd week - Implemented status by 27th sept

  1. AI Business Plan Generator (1k - 10k)
  2. AI Summarizer (10k - 100k)
  3. AI Business Name Generator (10k - 100k)
  4. AI YouTube Name Generator (10k - 100k)
Originally created by @DikshaDisciplines on GitHub (Sep 19, 2025). Original GitHub issue: https://github.com/AJaySi/ALwrity/issues/254 Originally assigned to: @uniqueumesh on GitHub. 2nd week - Implemented status by 27th sept 5. AI Business Plan Generator (1k - 10k) 6. AI Summarizer (10k - 100k) 7. AI Business Name Generator (10k - 100k) 8. AI YouTube Name Generator (10k - 100k)
kerem 2026-03-13 20:41:00 +03:00
Author
Owner

@uniqueumesh commented on GitHub (Sep 19, 2025):

@DikshaDisciplines

Thank you for assigning me. I will work on them one by one.

<!-- gh-comment-id:3310804112 --> @uniqueumesh commented on GitHub (Sep 19, 2025): @DikshaDisciplines Thank you for assigning me. I will work on them one by one.
Author
Owner

@uniqueumesh commented on GitHub (Sep 23, 2025):

@DikshaDisciplines

Deploy AI Business Plan Generator to ALwrity.com — Request QA and Improvement Suggestions

Summary

We’ve built and deployed the AI Business Plan Generator to ALwrity.com.
Features include multi-step inputs with examples, Gemini API key input, AI-generated plan, and PDF download.

Live URL

AI Business Plan Generator

What’s Included

Streamlit app with 5-step flow:

  • Company Overview, Marketing Details, Competitor Info, Financial Overview, Generate Plan
  • Example placeholders in all fields for non-tech users
  • Sidebar Gemini API key input (session-only)
  • PDF download (ReportLab) with Markdown fallback
  • Validations for required sections
Image
<!-- gh-comment-id:3322483964 --> @uniqueumesh commented on GitHub (Sep 23, 2025): @DikshaDisciplines ## Deploy AI Business Plan Generator to ALwrity.com — Request QA and Improvement Suggestions ### Summary We’ve built and deployed the AI Business Plan Generator to ALwrity.com. Features include multi-step inputs with examples, Gemini API key input, AI-generated plan, and PDF download. ### Live URL [AI Business Plan Generator ](https://www.alwrity.com/ai-business-plan-generator-tool) ### What’s Included **Streamlit app with 5-step flow:** - Company Overview, Marketing Details, Competitor Info, Financial Overview, Generate Plan - Example placeholders in all fields for non-tech users - Sidebar Gemini API key input (session-only) - PDF download (ReportLab) with Markdown fallback - Validations for required sections <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/7df9472b-b065-4371-a78b-10b53df261a0" />
Author
Owner

@uniqueumesh commented on GitHub (Sep 23, 2025):

Progress Report: ALwrity-AI-Summarizer

What’s done

  1. Streamlit app scaffolded with modular structure (app.py, ui/, core/, services/).
  2. BOYK flow: users enter their own Gemini API key in the UI.
  3. Plain-text input up to 1000 words with live counter and hard limit.
  4. Output format options: Paragraph or Bullet points.
  5. Tone options: Formal, Friendly, Casual, Professional, Diplomatic, Confident, or Custom (with input).
  6. Reliable copy-to-clipboard button (Clipboard API + fallback).
  7. Gemini 2.5 Flash integration with clean prompt builder.
  8. README with setup, usage, troubleshooting, privacy, and config.

Tool link

Image Image

Please comment with suggestions you want prioritized.

<!-- gh-comment-id:3323322959 --> @uniqueumesh commented on GitHub (Sep 23, 2025): ## Progress Report: ALwrity-AI-Summarizer ### What’s done 1. Streamlit app scaffolded with modular structure (app.py, ui/, core/, services/). 2. BOYK flow: users enter their own Gemini API key in the UI. 3. Plain-text input up to 1000 words with live counter and hard limit. 4. Output format options: Paragraph or Bullet points. 5. Tone options: Formal, Friendly, Casual, Professional, Diplomatic, Confident, or Custom (with input). 6. Reliable copy-to-clipboard button (Clipboard API + fallback). 7. Gemini 2.5 Flash integration with clean prompt builder. 8. README with setup, usage, troubleshooting, privacy, and config. [Tool link](https://alwrity-ai-summarizer.streamlit.app/) <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/6d119f9f-2590-45a5-b161-3d2e5713b490" /> <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/c7f31084-1731-4240-b5aa-fca09747e6e8" /> Please comment with suggestions you want prioritized.
Author
Owner

@uniqueumesh commented on GitHub (Sep 25, 2025):

ALwrity AI YouTube Channel Name Generator - Progress Report

Completed Features

Core Application

  • Single-screen Streamlit UI - Clean, no-sidebar interface for non-technical users
  • Multi-language support - English, Hindi, French, Spanish, German, Arabic, Portuguese, Bengali, Japanese, Korean + custom language option
  • Tone customization - Friendly, Professional, Casual, Educational, Playful, Bold + custom tone input
  • Variable output - Generate 5, 10, 15, or 20 name variants
  • Optional explanations - Toggle to include meaning/rationale for each name
  • User-provided API key - Secure Gemini API key input (session-only storage)

Technical Implementation

  • Modular architecture - Separated UI, core logic, services, and utilities
  • Gemini 2.5 Flash integration - Direct API calls with structured JSON responses
  • Smart filtering - Post-processing to remove sentences/long phrases, keep only short brandable names
  • Error handling - Graceful API error messages and validation
  • Session management - Shortlist functionality with copy/export options

Quality & User Experience

  • Input validation - Required field checks and user-friendly error messages
  • Response sanitization - Filters out non-name content, ensures 1-3 word channel names
  • Loading states - Clear feedback during generation process
  • Action buttons - Copy name, copy name+explanation, add to shortlist per result
  • Shortlist management - Save favorites and export functionality

Documentation & Setup

  • Comprehensive README - Installation, usage, troubleshooting, and contribution guidelines
  • Project structure - Clear folder organization with __init__.py files
  • Requirements file - All necessary dependencies listed
  • Streamlit configuration - Optimized theme and settings
  • Git repository - Properly initialized with individual file commits

🔧 Technical Architecture

File Structure

├── app/
│   ├── ui/main.py          # Streamlit interface
│   ├── core/prompt.py      # Prompt building & sanitization
│   ├── services/gemini.py  # Gemini API integration
│   └── utils/session.py    # Session state management
├── main.py                 # Application entry point
├── requirements.txt        # Dependencies
├── .streamlit/config.toml  # Streamlit configuration
└── README.md              # Documentation

Key Components

  • UI Layer: Pure Streamlit widgets, no business logic
  • Core Layer: Prompt construction, validation, response parsing
  • Services Layer: External API calls, network operations
  • Utils Layer: Helper functions, session management

🚀 Current Status

Working Features

  • Name generation with Gemini 2.5 Flash
  • Multi-language and tone support
  • Smart filtering for brandable names
  • Shortlist and copy functionality
  • Error handling and validation
  • Complete documentation

Ready for Use

  • Local development: streamlit run main.py
  • Dependencies: All requirements specified
  • Documentation: Complete setup and usage guide
  • Git repository: Properly versioned and pushed

📋 Next Steps (Optional Enhancements)

Potential Improvements

  • Domain availability checking
  • More language options
  • Name history persistence
  • Logo mockup generation
  • Team collaboration features
  • Advanced filtering options

Deployment Ready

  • Streamlit Community Cloud deployment
  • Docker containerization
  • CI/CD pipeline setup

🎯 Success Metrics

  • Functionality: All core features working as specified
  • User Experience: Simple, intuitive interface for non-technical users
  • Code Quality: Modular, maintainable architecture
  • Documentation: Comprehensive setup and usage instructions
  • Version Control: Clean Git history with logical commits

📊 Project Completion

Status: COMPLETE - Core functionality delivered and ready for use

The ALwrity AI YouTube Channel Name Generator is fully functional with all requested features implemented, tested, and documented. The tool successfully generates brandable YouTube channel names using Gemini 2.5 Flash with a user-friendly interface designed for non-technical users.

<!-- gh-comment-id:3332163148 --> @uniqueumesh commented on GitHub (Sep 25, 2025): # ALwrity AI YouTube Channel Name Generator - Progress Report ## ✅ Completed Features ### Core Application - **Single-screen Streamlit UI** - Clean, no-sidebar interface for non-technical users - **Multi-language support** - English, Hindi, French, Spanish, German, Arabic, Portuguese, Bengali, Japanese, Korean + custom language option - **Tone customization** - Friendly, Professional, Casual, Educational, Playful, Bold + custom tone input - **Variable output** - Generate 5, 10, 15, or 20 name variants - **Optional explanations** - Toggle to include meaning/rationale for each name - **User-provided API key** - Secure Gemini API key input (session-only storage) ### Technical Implementation - **Modular architecture** - Separated UI, core logic, services, and utilities - **Gemini 2.5 Flash integration** - Direct API calls with structured JSON responses - **Smart filtering** - Post-processing to remove sentences/long phrases, keep only short brandable names - **Error handling** - Graceful API error messages and validation - **Session management** - Shortlist functionality with copy/export options ### Quality & User Experience - **Input validation** - Required field checks and user-friendly error messages - **Response sanitization** - Filters out non-name content, ensures 1-3 word channel names - **Loading states** - Clear feedback during generation process - **Action buttons** - Copy name, copy name+explanation, add to shortlist per result - **Shortlist management** - Save favorites and export functionality ### Documentation & Setup - **Comprehensive README** - Installation, usage, troubleshooting, and contribution guidelines - **Project structure** - Clear folder organization with `__init__.py` files - **Requirements file** - All necessary dependencies listed - **Streamlit configuration** - Optimized theme and settings - **Git repository** - Properly initialized with individual file commits ## 🔧 Technical Architecture ### File Structure ``` ├── app/ │ ├── ui/main.py # Streamlit interface │ ├── core/prompt.py # Prompt building & sanitization │ ├── services/gemini.py # Gemini API integration │ └── utils/session.py # Session state management ├── main.py # Application entry point ├── requirements.txt # Dependencies ├── .streamlit/config.toml # Streamlit configuration └── README.md # Documentation ``` ### Key Components - **UI Layer**: Pure Streamlit widgets, no business logic - **Core Layer**: Prompt construction, validation, response parsing - **Services Layer**: External API calls, network operations - **Utils Layer**: Helper functions, session management ## 🚀 Current Status ### Working Features - ✅ Name generation with Gemini 2.5 Flash - ✅ Multi-language and tone support - ✅ Smart filtering for brandable names - ✅ Shortlist and copy functionality - ✅ Error handling and validation - ✅ Complete documentation ### Ready for Use - **Local development**: `streamlit run main.py` - **Dependencies**: All requirements specified - **Documentation**: Complete setup and usage guide - **Git repository**: Properly versioned and pushed ## 📋 Next Steps (Optional Enhancements) ### Potential Improvements - [ ] Domain availability checking - [ ] More language options - [ ] Name history persistence - [ ] Logo mockup generation - [ ] Team collaboration features - [ ] Advanced filtering options ### Deployment Ready - [ ] Streamlit Community Cloud deployment - [ ] Docker containerization - [ ] CI/CD pipeline setup ## 🎯 Success Metrics - **Functionality**: All core features working as specified - **User Experience**: Simple, intuitive interface for non-technical users - **Code Quality**: Modular, maintainable architecture - **Documentation**: Comprehensive setup and usage instructions - **Version Control**: Clean Git history with logical commits ## 📊 Project Completion **Status**: ✅ **COMPLETE** - Core functionality delivered and ready for use The ALwrity AI YouTube Channel Name Generator is fully functional with all requested features implemented, tested, and documented. The tool successfully generates brandable YouTube channel names using Gemini 2.5 Flash with a user-friendly interface designed for non-technical users.
Author
Owner

@AJaySi commented on GitHub (Sep 25, 2025):

  • Provide a new button called 'Refine Suggestions', if the end user does not like the brand names or wants to provide suggestions then they can provide a their comment, why they like the branc names and what changes to do. We can then take end user comments and re generate the brand names.

  • I think gemini 2.5 api also does image generation. Logo generation for YT names will be a great feature.

  • Streamlit also provide pop modals to display information and results. Where is the link to try and screenshots.
    Thanks.

<!-- gh-comment-id:3332222696 --> @AJaySi commented on GitHub (Sep 25, 2025): - Provide a new button called 'Refine Suggestions', if the end user does not like the brand names or wants to provide suggestions then they can provide a their comment, why they like the branc names and what changes to do. We can then take end user comments and re generate the brand names. - I think gemini 2.5 api also does image generation. Logo generation for YT names will be a great feature. - Streamlit also provide pop modals to display information and results. Where is the link to try and screenshots. Thanks.
Author
Owner

@AJaySi commented on GitHub (Sep 25, 2025):

To check channel names availability. We can also use google search with gemini 2.5. Refer to this : https://ai.google.dev/gemini-api/docs/google-search

<!-- gh-comment-id:3332231158 --> @AJaySi commented on GitHub (Sep 25, 2025): To check channel names availability. We can also use google search with gemini 2.5. Refer to this : https://ai.google.dev/gemini-api/docs/google-search
Author
Owner

@uniqueumesh commented on GitHub (Sep 25, 2025):

@AJaySi

Here is the YouTube name generator tool link

Screenshot:

Image

Results:

Image

I will start implementing your suggestion in the tool. Thank you for your help.

<!-- gh-comment-id:3332360140 --> @uniqueumesh commented on GitHub (Sep 25, 2025): @AJaySi Here is the YouTube name generator tool [link](https://alwrity-ai-youtube-channel-name-generator.streamlit.app/) Screenshot: <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/147c229e-4aba-4af2-8e6f-a71fc291ad0a" /> Results: <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/0921b25b-7f71-4a9b-a197-fc2f3516124b" /> I will start implementing your suggestion in the tool. Thank you for your help.
Author
Owner

@AJaySi commented on GitHub (Sep 25, 2025):

Is it integrated in alwrity.com ?

<!-- gh-comment-id:3332394007 --> @AJaySi commented on GitHub (Sep 25, 2025): Is it integrated in alwrity.com ?
Author
Owner

@uniqueumesh commented on GitHub (Sep 25, 2025):

I am going to integrate all these tools today. It's on the process.

<!-- gh-comment-id:3332481284 --> @uniqueumesh commented on GitHub (Sep 25, 2025): I am going to integrate all these tools today. It's on the process.
Author
Owner

@uniqueumesh commented on GitHub (Sep 25, 2025):

Published: ALwrity AI Summarizer is live on alwrity.com

  • Status: Launched and publicly available
  • Live page: https://www.alwrity.com/ai-summarizer-tool
  • Highlights
  • Input: Plain text (≤1000 words) with live counter
  • Formats: Paragraph or Bullet points
  • Tone control: Formal, Friendly, Casual, Professional, Diplomatic, Confident, Custom
  • Copy: One‑click copy to clipboard
  • Privacy: BOYK (Bring Your Own API Key) handled in‑app; nothing stored
<!-- gh-comment-id:3332958224 --> @uniqueumesh commented on GitHub (Sep 25, 2025): ## Published: ALwrity AI Summarizer is live on alwrity.com - Status: Launched and publicly available - Live page: https://www.alwrity.com/ai-summarizer-tool - Highlights - Input: Plain text (≤1000 words) with live counter - Formats: Paragraph or Bullet points - Tone control: Formal, Friendly, Casual, Professional, Diplomatic, Confident, Custom - Copy: One‑click copy to clipboard - Privacy: BOYK (Bring Your Own API Key) handled in‑app; nothing stored
Author
Owner

@uniqueumesh commented on GitHub (Sep 27, 2025):

YouTube Channel Name Generator Now Live on ALwrity.com

Tool Successfully Published and Live
The ALwrity AI YouTube Channel Name Generator has been successfully deployed and is now live for users on the ALwrity.com website.

🚀 What's Live:

  • Complete tool functionality with AI-powered name generation
  • Professional logo generation with multiple styles and customisation
  • Multi-language support (10+ languages)
  • Export capabilities (CSV, Excel, SVG downloads)
  • Mobile-responsive design for all devices
  • Zero registration required - instant access

📈 Key Features Delivered:

Single-file architecture for easy deployment
Robust fallback system ensuring 100% uptime
Clean, professional UI without debug elements
Modular logo generation system
SEO-optimized website integration
Complete documentation and user guides

🌐 User Access:

Users can now access the tool directly from the ALwrity.com website with full functionality, professional branding, and comprehensive support documentation.

Status: LIVE AND OPERATIONAL

The tool is ready for public use and has been successfully integrated into the ALwrity ecosystem! 🎬

<!-- gh-comment-id:3341178089 --> @uniqueumesh commented on GitHub (Sep 27, 2025): ## YouTube Channel Name Generator Now Live on ALwrity.com ✅ Tool Successfully Published and Live The ALwrity [AI YouTube Channel Name Generator](https://www.alwrity.com/ai-youyube-channel-name-generator-tool) has been successfully deployed and is now live for users on the ALwrity.com website. ## 🚀 What's Live: - Complete tool functionality with AI-powered name generation - Professional logo generation with multiple styles and customisation - Multi-language support (10+ languages) - Export capabilities (CSV, Excel, SVG downloads) - Mobile-responsive design for all devices - Zero registration required - instant access ## 📈 Key Features Delivered: ✅ Single-file architecture for easy deployment ✅ Robust fallback system ensuring 100% uptime ✅ Clean, professional UI without debug elements ✅ Modular logo generation system ✅ SEO-optimized website integration ✅ Complete documentation and user guides ### 🌐 User Access: Users can now access the tool directly from the [ALwrity.com website ](https://www.alwrity.com/ai-youyube-channel-name-generator-tool)with full functionality, professional branding, and comprehensive support documentation. ### Status: ✅ LIVE AND OPERATIONAL The tool is ready for public use and has been successfully integrated into the ALwrity ecosystem! 🎬
Author
Owner

@uniqueumesh commented on GitHub (Sep 27, 2025):

ALwrity AI Business Name Generator is LIVE!

What's Live:

  • Free AI-powered business name generation for all users.
  • Multiple style options (Professional, Modern, Creative, Funny, Custom).
  • Advanced features, including refinement and keyword integration.
  • User-friendly interface with instant results.
  • SEO-optimised page content and meta tags.

🎯 User Benefits:

  • Instant Results - Generate 5-50 business names in seconds.
  • Professional Quality - AI-generated names suitable for real businesses.
  • Refinement Options - Users can provide feedback for better suggestions.
  • Easy to Use - Simple interface for non-tech users.

📊 Technical Achievements:

  • Safety Filter Issues resolved for better API success.
  • Enhanced Prompt Engineering for higher quality names.
  • Modular Architecture for easy maintenance.
  • Responsive Design for all devices.
  • SEO Optimisation for better search visibility.

🔗 Access:

Users can now access the tool directly on alwrity.com and start generating professional business names immediately!
The tool is ready for user traffic and feedback! 🚀

Image Image Image
<!-- gh-comment-id:3341972568 --> @uniqueumesh commented on GitHub (Sep 27, 2025): ## ALwrity AI Business Name Generator is LIVE! - The [ALwrity AI Business Name Generator](https://alwrity-ai-business-name-generator.streamlit.app/) is now live and available for users on alwrity.com! ## ✅ What's Live: - Free AI-powered business name generation for all users. - Multiple style options (Professional, Modern, Creative, Funny, Custom). - Advanced features, including refinement and keyword integration. - User-friendly interface with instant results. - SEO-optimised page content and meta tags. ## 🎯 User Benefits: - Instant Results - Generate 5-50 business names in seconds. - Professional Quality - AI-generated names suitable for real businesses. - Refinement Options - Users can provide feedback for better suggestions. - Easy to Use - Simple interface for non-tech users. ## 📊 Technical Achievements: - Safety Filter Issues resolved for better API success. - Enhanced Prompt Engineering for higher quality names. - Modular Architecture for easy maintenance. - Responsive Design for all devices. - SEO Optimisation for better search visibility. ### 🔗 Access: Users can now access the tool directly on alwrity.com and start generating professional business names immediately! The tool is ready for user traffic and feedback! 🚀 <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/e39cbc84-9836-4ad8-9d52-94530c1eaf52" /> <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/ad9c829a-a661-4082-affc-59e3344f5b2f" /> <img width="1920" height="1080" alt="Image" src="https://github.com/user-attachments/assets/349324bb-e1a4-461b-84f5-49aa36825ecf" />
Author
Owner

@AJaySi commented on GitHub (Sep 28, 2025):

@uniqueumesh @DikshaDisciplines

1). We also need a logo image generator for this.

2). Since, you already have business plan generator, provide a link to that in the tool.
As SEO Expert, you know the value of internal linking. Basic mistakes.

3). There is no creativity in your designs, its the same boring inputs and the same colors, the same flow, small/difficult to see inputs, so much of scrolling, not professional looking at all. You are Not a printing press. If you dont experiment, you wont learn.
There needs to be something different in every tools.

4). Your tools need to provide more value than GPTs, I can generate brand names in gemini/openai UI and dont need your app in which i search for API and then provide that and then provide 5 inputs and then get the brand names, how is this making end users life easier or providing any value to them ??

5). What is the improvement in ALwrity traffic ?

  • Send me an excel of all tools you have in the last 1-2 months and how much traffic is coming because of it ??
  • How Many users are using your tools ??
  • Are these tools pages, even ranking on the google ??
  • Lets NOT make anymore tools, until you provide the above data points.
<!-- gh-comment-id:3342240022 --> @AJaySi commented on GitHub (Sep 28, 2025): @uniqueumesh @DikshaDisciplines 1). We also need a logo image generator for this. 2). Since, you already have business plan generator, provide a link to that in the tool. As SEO Expert, you know the value of internal linking. Basic mistakes. 3). There is no creativity in your designs, its the same boring inputs and the same colors, the same flow, small/difficult to see inputs, so much of scrolling, not professional looking at all. You are Not a printing press. If you dont experiment, you wont learn. There needs to be something different in every tools. 4). Your tools need to provide more value than GPTs, I can generate brand names in gemini/openai UI and dont need your app in which i search for API and then provide that and then provide 5 inputs and then get the brand names, how is this making end users life easier or providing any value to them ?? 5). What is the improvement in ALwrity traffic ? - Send me an excel of all tools you have in the last 1-2 months and how much traffic is coming because of it ?? - How Many users are using your tools ?? - Are these tools pages, even ranking on the google ?? - Lets NOT make anymore tools, until you provide the above data points.
Author
Owner

@uniqueumesh commented on GitHub (Sep 28, 2025):

@AJaySi

  1. After I made changes in tool pages, the traffic has increased only by .2% in the last 30 days, before .5% now .7%.
Image
  1. The tool I have created in the last 30 days they have not improve their ranking.

  2. There is a no such traffic came to use the tool I have created. I have given a image of excel of the data below.

Image
<!-- gh-comment-id:3342267179 --> @uniqueumesh commented on GitHub (Sep 28, 2025): @AJaySi 1. After I made changes in tool pages, the traffic has increased only by .2% in the last 30 days, before .5% now .7%. <img width="1878" height="830" alt="Image" src="https://github.com/user-attachments/assets/6beffe08-bd3e-43de-aba9-4aa0b833b3b3" /> 2. The tool I have created in the last 30 days they have not improve their ranking. 3. There is a no such traffic came to use the tool I have created. I have given a image of excel of the data below. <img width="598" height="320" alt="Image" src="https://github.com/user-attachments/assets/8a42bf83-5dca-4b88-b65d-2f8ed1c21880" />
Author
Owner

@uniqueumesh commented on GitHub (Sep 28, 2025):

@AJaySi

Thank you for your feedback. They provided me with a clear picture of what I had been doing over the past month. Please review the data above and provide me with suggestions for my next task.

Thank you

<!-- gh-comment-id:3342275233 --> @uniqueumesh commented on GitHub (Sep 28, 2025): @AJaySi Thank you for your feedback. They provided me with a clear picture of what I had been doing over the past month. Please review the data above and provide me with suggestions for my next task. Thank you
Author
Owner

@AJaySi commented on GitHub (Sep 29, 2025):

@uniqueumesh
I think, you have all the data, you are the owner of these tools. I cant give directions, i think it should be you, giving us directions.
Provide us with your directions and what should be targeted next, according to you ? Update it here.

"I am waiting for your reply to do next steps. "

"I have noticed that due to the BOYK model on the alwrity.com website, users are not using our tool because they have to get their API from Gemini, and it's a long process. This is not helping the user and making more complicated when they come to test our tool. We have to change all our tools back to the early stage what you were done in the starting. I have messed up everything. I have to stop developing tool like this. Please give me your suggestion and task according you wated me to do. I will not make a mistake again and follow exactly as you have given me."

_### BYOK is only for github and not for ALwrity website or SaaS

<!-- gh-comment-id:3345103575 --> @AJaySi commented on GitHub (Sep 29, 2025): @uniqueumesh I think, you have all the data, you are the owner of these tools. I cant give directions, i think it should be you, giving us directions. Provide us with your directions and what should be targeted next, according to you ? Update it here. "I am waiting for your reply to do next steps. " "I have noticed that due to the BOYK model on the [alwrity.com](http://alwrity.com/) website, users are not using our tool because they have to get their API from Gemini, and it's a long process. This is not helping the user and making more complicated when they come to test our tool. We have to change all our tools back to the early stage what you were done in the starting. I have messed up everything. I have to stop developing tool like this. Please give me your suggestion and task according you wated me to do. I will not make a mistake again and follow exactly as you have given me." **_### BYOK is only for github and not for ALwrity website or SaaS**
Author
Owner

@uniqueumesh commented on GitHub (Sep 29, 2025):

@AJaySi @DikshaDisciplines

Yes, I was wrong in making the BOYK model AI tool for the ALwrity website, which is affecting the traffic. Users are coming to our website and leaving without testing the tool because of the long process to get the API keys and all. The end user wants it in simple steps. I have messed up all this, and now it's time for me to solve these issues. I am sorry for my slow work and for not finishing my task on time.

<!-- gh-comment-id:3345204230 --> @uniqueumesh commented on GitHub (Sep 29, 2025): @AJaySi @DikshaDisciplines Yes, I was wrong in making the BOYK model AI tool for the ALwrity website, which is affecting the traffic. Users are coming to our website and leaving without testing the tool because of the long process to get the API keys and all. The end user wants it in simple steps. I have messed up all this, and now it's time for me to solve these issues. I am sorry for my slow work and for not finishing my task on time.
Author
Owner

@AJaySi commented on GitHub (Oct 9, 2025):

@DikshaDisciplines @uniqueumesh

Assigning one ticker for so many tasks is a nightmare to track. We should create a issue for one task only.
This should have been a milestone.
I think most of the above work is done. We should always aim at closing issue tickets, they are like backlogs.
Lets plan to close this soon. Thanks.

<!-- gh-comment-id:3384442634 --> @AJaySi commented on GitHub (Oct 9, 2025): @DikshaDisciplines @uniqueumesh Assigning one ticker for so many tasks is a nightmare to track. We should create a issue for one task only. This should have been a milestone. I think most of the above work is done. We should always aim at closing issue tickets, they are like backlogs. Lets plan to close this soon. Thanks.
Author
Owner

@uniqueumesh commented on GitHub (Oct 9, 2025):

From the above task, all the following three tools are hosted on alwrity.com:

  1. AI Business Plan Generator (1k - 10k) [live]

  2. AI Summarizer (10k - 100k) [live]

  3. AI YouTube Name Generator (10k - 100k) (improvements are in progress) [live]

  4. AI Business Name Generator (10k - 100k) (WIP)

<!-- gh-comment-id:3384769594 --> @uniqueumesh commented on GitHub (Oct 9, 2025): From the above task, all the following three tools are hosted on alwrity.com: 1. AI Business Plan Generator (1k - 10k) [live] 2. AI Summarizer (10k - 100k) [live] 3. AI YouTube Name Generator (10k - 100k) (improvements are in progress) [live] 4. AI Business Name Generator (10k - 100k) (WIP)
Author
Owner

@AJaySi commented on GitHub (Oct 9, 2025):

@uniqueumesh
Great progress.

<!-- gh-comment-id:3385655631 --> @AJaySi commented on GitHub (Oct 9, 2025): @uniqueumesh Great progress.
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#510
No description provided.