From 07247fe08e3bdb44bc80cbe2c8e1fd3a3c8d72b2 Mon Sep 17 00:00:00 2001 From: ajaysi Date: Sat, 4 May 2024 18:17:33 +0530 Subject: [PATCH] Create your Agentic content team --- alwrity.py | 5 + lib/ai_writers/ai_agents_crew_writer.py | 124 +- ...ntent-Creation-with-Advanced-Technology.md | 64 - .../my_content_team/content_outliner.txt | 15 + .../my_content_team/content_researcher.txt | 20 + .../my_content_team/content_reviewer.txt | 26 + .../my_content_team/content_writer.txt | 20 + .../web_research_report_2024-04-27_12-32-54 | 1187 ----------------- main_config | 35 + 9 files changed, 190 insertions(+), 1306 deletions(-) delete mode 100644 lib/workspace/2024-04-27-AI-Powered-Writing-Elevate-Your-Content-Creation-with-Advanced-Technology.md create mode 100644 lib/workspace/my_content_team/content_outliner.txt create mode 100644 lib/workspace/my_content_team/content_researcher.txt create mode 100644 lib/workspace/my_content_team/content_reviewer.txt create mode 100644 lib/workspace/my_content_team/content_writer.txt delete mode 100644 lib/workspace/web_research_report_2024-04-27_12-32-54 diff --git a/alwrity.py b/alwrity.py index 41ba9bd6..e9c17462 100644 --- a/alwrity.py +++ b/alwrity.py @@ -254,10 +254,15 @@ def create_env_file(): if __name__ == "__main__": + print("Checking Internet..") check_internet() + print("Creating .env file") create_env_file() + print("Clear, all this..") os.system("clear" if os.name == "posix" else "cls") + print("Checking Search APIs..") check_search_apis() + print("Checking LLM APIs..") check_llm_environs() # Export the paths and file names. Dont want alwrity to be chatty and prompt for inputs. diff --git a/lib/ai_writers/ai_agents_crew_writer.py b/lib/ai_writers/ai_agents_crew_writer.py index bfdf7a5b..5a84802a 100644 --- a/lib/ai_writers/ai_agents_crew_writer.py +++ b/lib/ai_writers/ai_agents_crew_writer.py @@ -1,4 +1,6 @@ import os +import configparser + from crewai import Agent, Task, Crew from crewai_tools import SerperDevTool from langchain_google_genai import ChatGoogleGenerativeAI @@ -14,17 +16,14 @@ def create_agents(search_keywords): # Set gemini pro as llm llm = ChatGoogleGenerativeAI( - model="gemini-pro", verbose=True, temperature=0.9, google_api_key=google_api_key + model="gemini-pro", verbose=True, temperature=0.6, google_api_key=google_api_key ) + role, goal, backstory = read_config("content_researcher") content_researcher = Agent( - role = 'Senior Research Analyst', - goal = f'Uncover content writing ideas for "{search_keywords}" keywords.', - backstory = f"""You work at a leading digital marketing firm. - Your expertise lies in identifying emerging trends, topic for content creation. - You are expert in researching latest information about various topics and {search_keywords}. - Your research and content suggestions are foundation for content writers. - Your detailed content research is pivotal to company's content strategy.""", + role = role, + goal = goal, + backstory = backstory, tools = [search_tool], memory = True, # Enable memory verbose = True, @@ -34,13 +33,11 @@ def create_agents(search_keywords): llm = llm ) + role, goal, backstory = read_config("content_outliner") content_outliner = Agent( - role = 'Senior Content Strategist', - goal = f'Create a content outline for "{search_keywords}" keywords, from your insights & provided context.', - backstory = """You are an expert digital content writer and marketing expert. - The content researcher had identified ideas to write content on. - Use this knowledge to write your content outline. - Take your time going over the research. Your content outline will be expanded upon after review.""", + role = role, + goal = goal, + backstory = backstory, memory = True, # Enable memory verbose = True, max_rpm = 10, # No limit on requests per minute @@ -49,18 +46,11 @@ def create_agents(search_keywords): llm = llm ) + role, goal, backsotry = read_config("content_writer") content_writer = Agent( - role = 'Content Strategist', - goal = f"""Craft compelling & SEO optimized content on {search_keywords}. - Rank high on Google for popular long-tail keywords related to the short-tail keyword {search_keywords}""", - backstory = f"""You are a renowned Content Strategist, known for your insightful and engaging articles. - You transform complex concepts into compelling narratives. - Limit them to 20 words or so, using language familiar to the majority. - Example: Instead of "Utilize this methodology," say "Use this method." - Employ a clear and concise writing style. - Engage your audience with a compelling, fun, and informative tone, - that effectively conveys the technical aspects of the topic in simple terms. - """, + role = role, + goal = goal, + backstory = backstory, memory = True, # Enable memory verbose = True, max_rpm = 10, # No limit on requests per minute @@ -69,19 +59,11 @@ def create_agents(search_keywords): llm = llm ) + reviewer_config = read_config("content_reviewer") content_reviewer = Agent( - role="Expert Writing Critic & content Editor.", - goal="Review the draft content and identfy potential issues.", - backstory="""You are expert reviewer with 10 years of exprience in reviewing digital content. - The make sure that article are interesting and correct information provided. - Simplicity will resonate with your readers. - Pay attention to grammar and punctuation. - Avoid AI sounding words and pass AI detection tools. - Engage with active voice. It’s as if you’re in conversation with the reader. - Example: Use "You will see benefits" instead of "One will see benefits." - Use headings, bullets, and formatting to break the monotony of the text. These elements add rhythm and can make a document more inviting. - A concise conclusion that resonates with the beginning can bring your piece full circle, satisfying your readers. - """, + role=role, + goal=goal, + backstory=backstory, memory=True, # Enable memory verbose=True, max_rpm=10, # No limit on requests per minute @@ -93,38 +75,33 @@ def create_agents(search_keywords): return [content_researcher, content_outliner, content_writer, content_reviewer] def create_tasks(agents, search_keywords): + task_description, expected_output = read_config("research_task") + print(task_description, expected_output) research_task = Task( - description=f"""Conduct a comprehensive topic analysis on the following: "{search_keywords}". - Identify keyword trends, SEO opportunities, and potential content ideas to write upon. - """, - expected_output="Provide Full analysis report in bullet points", + description=f"""The main focus keywords are: "{search_keywords}".\n{task_description}""", + expected_output = expected_output, agent=agents[0] # Assign to the researcher agent ) + task_description, expected_output = read_config("outline_task") outline_task = Task( - description="""Use the insights to produce a detailed content outline to expand upon later.""", - expected_output="A detailed and insightful content outline on {search_keywords}.", + description=f"{task_description}.\n The main focus keywords are {search_keywords}", + expected_output=f"{expected_output}", #human_input=True, agent=agents[1] # Assign to the outliner agent ) + task_description, expected_output = read_config("writer_task") writer_task = Task( - description="""Using the insights provided, develop an engaging content that highlights {search_keywords}. - Your post should be informative yet accessible, catering to a tech-savvy audience. - Avoid complex words so it doesn't sound like AI.""", - expected_output="A 2000 words content convering most sections of the provided outline.", + description=f"{task_description}\nThe main focus keywords are {search_keywords}\n.", + expected_output=expected_output, agent=agents[2] # Assign to the writer agent ) + task_description, expected_output = read_config("review_task") proofread_task = Task( - description=f"""Sharpen the focus of the draft content by identifying overly wordy sections and crafting concise alternatives. - Words with many syllables are barriers to simplicity. - Choose simpler words, avoid sounding like AI. - Pay special attention to readiblity, formatting & styling of the content. - Make sure the draft content SEO optimised for keywords: {search_keywords}. - Make sure the final content is 2000 words long. - """, - expected_output="Final content with your review comments edited in the content draft.", + description=f"{task_description}.\nThe main focus keywords are: {search_keywords}.", + expected_output=expected_output, agent=agents[3] # Assign to the reviewer agent ) @@ -142,6 +119,43 @@ def execute_tasks(agents, tasks, lang): result = crew.kickoff() return result + +def read_config(which_member): + """ + Reads the role, goal, and backstory from the config file. + """ + # Assign the specific config file for each agent. + # Base path to workspace/my_content_team + team_dir = os.path.join(os.getcwd(), "lib", "workspace", "my_content_team") + config_file = None + + if 'content_researcher' in which_member or 'research_task' in which_member: + config_file = os.path.join(team_dir, "content_researcher.txt") + elif 'content_writer' in which_member or 'writer_task' in which_member: + config_file = os.path.join(team_dir, "content_writer.txt") + elif 'content_reviewer' in which_member or 'review_task' in which_member: + config_file = os.path.join(team_dir, "content_reviewer.txt") + elif 'content_outliner' in which_member or 'outline_task' in which_member: + config_file = os.path.join(team_dir, "content_outliner.txt") + + config = {} + try: + config = configparser.ConfigParser() + config.read(config_file) + role = config.get('main', 'role') + goal = config.get('main', 'goal') + backstory = config.get('backstory', 'text') + except Exception as err: + print(f"Error reading agent config: {err}") + + if not 'task' in which_member: + return role, goal, backstory + else: + task_description = config.get('task', 'task_description') + expected_output = config.get('task', 'task_expected_output') + return task_description, expected_output + + def ai_agents_writers(search_keywords, lang="en"): setup_environment() agents = create_agents(search_keywords) diff --git a/lib/workspace/2024-04-27-AI-Powered-Writing-Elevate-Your-Content-Creation-with-Advanced-Technology.md b/lib/workspace/2024-04-27-AI-Powered-Writing-Elevate-Your-Content-Creation-with-Advanced-Technology.md deleted file mode 100644 index 1b63cdb1..00000000 --- a/lib/workspace/2024-04-27-AI-Powered-Writing-Elevate-Your-Content-Creation-with-Advanced-Technology.md +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: AI-Powered Writing- Elevate Your Content Creation with Advanced Technology -date: 2024-03-13 14:50:15 +0530 -categories: [AI Writing, Content Creation] -tags: [AI Writing, Content Creation] -description: Unleash your writing power with AI! Discover how AI-powered writing tools can enhance your efficiency, improve accuracy, and optimize readability. Explore the best tools, tips, and FAQs to elevate your content creation. -img_path: '/assets/' -image: - path: generated_image_2024-04-27-12-36-19.png - alt: AI-Powered Writing- Elevate Your Content Creation with Advanced Technology ---- - -## Unleash Your Writing Potential with AI: A Comprehensive Guide to Enhanced Content Creation - -### Introduction - -In today's digital world, crafting captivating and informative content is essential for capturing readers' attention and achieving online success. However, producing high-quality content can be a time-consuming and challenging task. Enter AI-powered writing tools, which are revolutionizing the content creation process by empowering writers to improve their writing skills and produce exceptional content with ease. - -### The Transformative Power of AI in Content Creation - -AI-powered writing tools leverage advanced algorithms to analyze and understand human language. They have the ability to generate text, check grammar, suggest synonyms, and even rewrite entire sentences. By harnessing the power of AI, writers can: - -- **Enhance Efficiency:** AI tools automate repetitive tasks such as proofreading and editing, freeing up valuable time for more creative endeavors. -- **Elevate Accuracy:** AI algorithms can identify and correct grammatical errors, ensuring the precision and credibility of your content. -- **Optimize Readability:** AI tools analyze text structure and suggest improvements to enhance readability, making your content accessible and engaging. - -### Selecting the Ideal AI Writing Tool - -With a variety of AI writing tools available, choosing the one that aligns with your specific needs is crucial. Consider the following key factors: - -- **Functionality:** Determine the specific features you require, such as text generation, grammar checking, or plagiarism detection. -- **Cost:** AI writing tools vary in pricing models. Select a tool that aligns with your budget and offers the necessary features. -- **User Interface:** Opt for a tool with an intuitive interface that is user-friendly and easy to navigate. - -### Best Practices for Utilizing AI Writing Tools - -To maximize the benefits of AI writing tools, adhere to these best practices: - -- **Provide Clear Instructions:** Provide the AI with precise instructions regarding the tone, style, and length of the content you intend to create. -- **Proofread and Edit:** While AI tools can significantly enhance your writing, it is still essential to proofread and edit the generated content to ensure accuracy and clarity. -- **Complement Human Writing:** AI tools should not be seen as replacements for human writers but rather as valuable assistants that enhance their capabilities. Utilize them to augment your writing process. - -### Notable AI Writing Tools - -Some of the most prominent AI writing tools include: - -- **Jenni.ai:** An AI-powered writing assistant that offers text generation, citation, and grammar checking capabilities. -- **Writr:** An AI-powered writing tool designed to overcome writer's block and generate original content. -- **ShortlyAI:** An AI-powered writing tool specializing in creating high-quality content for various purposes, including blog posts and marketing copy. - -### Frequently Asked Questions - -**Q: Can AI writing tools completely replace human writers?** -**A:** No, AI writing tools are not intended to replace human writers. They serve as powerful assistants that can enhance the writing process and make it more efficient. - -**Q: Are AI-generated texts plagiarism-free?** -**A:** While AI writing tools strive to generate unique content, it is always advisable to check for plagiarism and cite sources appropriately. - -**Q: How can I leverage AI writing tools for SEO optimization?** -**A:** AI writing tools can assist in optimizing your content for search engines by suggesting keywords, improving readability, and ensuring that your content aligns with user intent. - -### Conclusion - -AI-powered writing tools are transforming the content creation landscape. By harnessing the power of AI, writers can enhance their productivity, refine their writing skills, and produce compelling content that resonates with their audience. By selecting the appropriate tool and following best practices, writers can unlock the full potential of AI and elevate their writing to new heights. \ No newline at end of file diff --git a/lib/workspace/my_content_team/content_outliner.txt b/lib/workspace/my_content_team/content_outliner.txt new file mode 100644 index 00000000..d7b49286 --- /dev/null +++ b/lib/workspace/my_content_team/content_outliner.txt @@ -0,0 +1,15 @@ +[main] +role = Senior Content Outliner at Alwrity.com + +goal = Create a content outline from your insights & provided context. + +[backstory] +text = You are an expert digital content writer and marketing expert. + The content researcher had identified ideas to write content on. + Use this knowledge to write your content outline. + Take your time going over the research. Your content outline will be expanded upon after review. + +[task] +task_description = Use the insights to produce a detailed content outline on the given main focus keyword. + +task_expected_output = A detailed and insightful content outline for given main focus keyword. diff --git a/lib/workspace/my_content_team/content_researcher.txt b/lib/workspace/my_content_team/content_researcher.txt new file mode 100644 index 00000000..412a011b --- /dev/null +++ b/lib/workspace/my_content_team/content_researcher.txt @@ -0,0 +1,20 @@ +[main] +role = Senior Research Analyst at Alwrity.com. +goal = Uncover content writing ideas for content writer. + +[backstory] +text = You web researcher at Alwrity.com. + Your expertise lies in identifying emerging trends, topic for content creation. + You are expert in researching latest information about various topics. + Your research and content suggestions are foundation for content writers. + Your detailed content research is pivotal to company's content strategy. + You web researcher at Alwrity.com. + Your expertise lies in identifying emerging trends, topic for content creation. + You are expert in researching latest information about various topics. + Your research and content suggestions are foundation for content writers. + Your detailed content research is pivotal to company's content strategy. + +[task] +task_description = Research blog content material for content writer. Include FAQs from people also ask. + +task_expected_output = Provide blog content research to content writer. diff --git a/lib/workspace/my_content_team/content_reviewer.txt b/lib/workspace/my_content_team/content_reviewer.txt new file mode 100644 index 00000000..82195a7c --- /dev/null +++ b/lib/workspace/my_content_team/content_reviewer.txt @@ -0,0 +1,26 @@ +[main] +role = Expert Writing Critic & content Editor. + +goal = Review the draft content and identfy potential issues. + +# Personalize the agent, give persona, personality, tone etc. +[backstory] +text = You are expert reviewer with 10 years of exprience in reviewing digital content. + The make sure that article are interesting and correct information provided. + Simplicity will resonate with your readers. + Pay attention to grammar and punctuation. + Avoid AI sounding words and pass AI detection tools. + Engage with active voice. It’s as if you’re in conversation with the reader. + Example: Use "You will see benefits" instead of "One will see benefits." + Use headings, bullets, and formatting to break the monotony of the text. These elements add rhythm and can make a document more inviting. + A concise conclusion that resonates with the beginning can bring your piece full circle, satisfying your readers. + +[task] +task_description = Sharpen the focus of the draft content by identifying overly wordy sections and crafting concise alternatives. + Words with many syllables are barriers to simplicity. + Choose simpler words, avoid sounding like AI. + Pay special attention to readiblity, formatting & styling of the content. + Make sure the draft content SEO optimised for given keywords. + Make sure the final content is 2000 words long. + +task_expected_output = Final content with your review comments edited in the content draft. diff --git a/lib/workspace/my_content_team/content_writer.txt b/lib/workspace/my_content_team/content_writer.txt new file mode 100644 index 00000000..6cf01c81 --- /dev/null +++ b/lib/workspace/my_content_team/content_writer.txt @@ -0,0 +1,20 @@ +[main] +role = Content writer at Alwrity.com + +goal = Craft compelling & SEO optimized content. + Rank high on Google for given keywords. Ensure organic growth of Alwrity.com + + +[backstory] +text = You are a renowned Content Writer, known for your insightful and engaging articles. + You transform complex concepts into compelling narratives. + Limit them to 20 words or so, using language familiar to the majority. + Example: Instead of "Utilize this methodology," say "Use this method." + Employ a clear and concise writing style. + Engage your audience with a compelling, fun, and informative tone, + that effectively conveys the technical aspects of the topic in simple terms. + +[task] +task_description = Using the insights provided, write detailed blog content. + +task_expected_output = A 2000 words content convering most sections of the provided outline. diff --git a/lib/workspace/web_research_report_2024-04-27_12-32-54 b/lib/workspace/web_research_report_2024-04-27_12-32-54 deleted file mode 100644 index 110ddcba..00000000 --- a/lib/workspace/web_research_report_2024-04-27_12-32-54 +++ /dev/null @@ -1,1187 +0,0 @@ -╒══════════════════════╤══════════════════════╤════════════════════════════════════════════════════════════════════════╕ -│ URL │ Title │ Summary │ -╞══════════════════════╪══════════════════════╪════════════════════════════════════════════════════════════════════════╡ -│ https://jenni.ai │ Supercharge Your │ POWERFUL FEATURES Write, cite, and edit Features built to enhance your │ -│ │ Writing with Jenni │ writing capabilities AI Autocomplete Autocomplete will write alongside │ -│ │ AI │ you to beat writer's block Customized Styles Choose your tone and type │ -│ │ │ for personalized AI generations In-text Citations Jenni consults the │ -│ │ │ latest research and cites in APA, MLA, or Harvard style Paraphrase & │ -│ │ │ Rewrite Paraphrase any text in any tone. Rewrite the internet │ -│ │ │ customized to you AI ASSISTANT Never write alone Get suggestions │ -│ │ │ whenever you are stuck or expand your notes into full paragraphs 😎 │ -│ │ │ CUSTOMER LOVE Join 1 million empowered writers Jenni has helped write │ -│ │ │ over 850 million words. From academic essays, journals, to top-ranking │ -│ │ │ blog posts USE CASES You're in control Types of content Jenni can help │ -│ │ │ you with Essays Save hours writing your essay or thesis with Jenni. │ -│ │ │ Blog posts Write blogs & articles faster with the help of AI. │ -│ │ │ Literature reviews Discover and write about relevant research Personal │ -│ │ │ statements Create a compelling college motivation letter. Stories │ -│ │ │ Fanfiction or the next Tolkein? Jenni can help. Speeches Write your │ -│ │ │ next compelling speech in less time. SUPPORT Frequently asked │ -│ │ │ questions Jenni is currently the most advanced writing system. We use │ -│ │ │ a combination of our own in-house AI systems, GPT4 and ChatGPT. Fine- │ -│ │ │ tune controls and custom data from each user to generate the highest │ -│ │ │ quality content on the market. Jenni's citation feature can be toggled │ -│ │ │ on and off when needed. Citations are sources from across the web that │ -│ │ │ relate to your content. When writing blogs these can be links to │ -│ │ │ related articles. When writing essays, citations can be links to │ -│ │ │ related research papers. You can cite in APA, MLA, Harvard and more! │ -│ │ │ Yes, you may generate text in your desired language and use our │ -│ │ │ translate feature to switch between languages. Currently Jenni is only │ -│ │ │ available on desktop. Jenni strives to generate content that has 0% │ -│ │ │ plagiarism-free. However, occasionally there may be sentences that │ -│ │ │ Jenni writes that also h │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://app.jenni.ai │ hey, here’s an │ Welcome back Login to continue writing Or continue with Email address │ -│ / │ invite to Jenni the │ Password Forgot Password? Don't have an account? Sign up here. Say 👋 │ -│ │ AI writing tool I │ to your best writing jenni.ai │ -│ │ have been telling │ │ -│ │ you about │ │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://www.writr.ai │ Writr - The Ultimate │ Trained on billions of lines of text. Writr helps you get unstuck when │ -│ / │ Writing Tool Powered │ writing, saving you time and helping you stay focused. Sign up Powered │ -│ │ By Artificial │ by By giving our AI instructions on what and how to write, you get │ -│ │ Intelligence │ higher quality content. This is by far the most important, powerful, │ -│ │ │ and easy-to-use feature of Writr. Once you have tried it, you will │ -│ │ │ have a hard time going back to the old fasion way of writing. Not an │ -│ │ │ expert writer? Writr can help you avoid using dummy text while │ -│ │ │ building your web page or application. Our AI-based writing tool will │ -│ │ │ generate great content for you right on the fly. Avoid the frustration │ -│ │ │ of writer's block. Let our AI write your content for you. Get started │ -│ │ │ Writr understands significantly more context than a simple │ -│ │ │ autocomplete or autocorrect. So wheteher you are creating a new web │ -│ │ │ page for your online business, writing an email, document, report, │ -│ │ │ blog or article, Writr will understand the context and help you write │ -│ │ │ the next line of content. Writr uses AI to write your next sentence, │ -│ │ │ paragraph or story. Tab TAB to cycle through suggestions Enter to │ -│ │ │ insert suggested text Writr is suited for individuals who are busy and │ -│ │ │ don't have the time to write their own content, but still want to │ -│ │ │ create quality content. If for some reason our product doesn't work │ -│ │ │ out, or you don't like it – you can cancel your subscription at any │ -│ │ │ time! Can’t find the answer you’re looking for? Reach out to our │ -│ │ │ customer support team. What is the limit of words the AI-based writing │ -│ │ │ tool can write in one go? It can write up to 600 characters/output, │ -│ │ │ but we do recommend to keep it shorter. Can your AI write content in │ -│ │ │ multiple languages? Most commonly spoken and written languages are │ -│ │ │ implemented and supported for the Pro Editor. The Basic tools are │ -│ │ │ built for English-only use. Shortly, more languages will be │ -│ │ │ implemented. How does it work? The AI uses a predictive algorithm to │ -│ │ │ generate content based on the words it is given based on the context. │ -│ │ │ What if I don't like the content it │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://aicontentdoj │ ShortlyAI │ ShortlyAI’s clean, blank canvas design gives you a good writing │ -│ o.com/shortlyai/ │ │ experience. But since being purchased by Jarvis support has been │ -│ │ │ lacking and the price increased beyond the reach of most. I no longer │ -│ │ │ fully recommend ShortlyAI. If you can afford it, it's still a great │ -│ │ │ tool -- but expect your help requests to take a very long time to be │ -│ │ │ answered. Instead, you should use Chibi AI. It's faster, offers a │ -│ │ │ superior writing experience, augments your writing skills better, has │ -│ │ │ no toxicity filter, and has simple, affordable pricing. Learn How to │ -│ │ │ Use ShortlyAI How to Write E-Commerce Product Descriptions Using AI │ -│ │ │ In this guide I show how you can use an AI writing tool like Jasper AI │ -│ │ │ to write product descriptions for your e-commerce store. Don’t Ask │ -│ │ │ for Complete Content; Craft it Using Components In this guide I show │ -│ │ │ you how to craft original long-form content using AI tools, by │ -│ │ │ thinking of your article in components. Write About Anything Using AI │ -│ │ │ Writing Tools Learn how to write about anything using AI writing tools │ -│ │ │ like Jarvis/Shortly -- even when the AI might know nothing about your │ -│ │ │ topic. Are You a Blogger? How to Use AI to Finish Your Posts Faster; │ -│ │ │ Publish More I know you probably don't trust "AI" tools. I don't blame │ -│ │ │ you. In the past, they've been nothing more than spam-generating │ -│ │ │ content spinners that produce Are You a Marketer? How AI Can Help You │ -│ │ │ Create Better Product Copy Faster. In this guide I want to show you │ -│ │ │ how to use ShortlyAI to write product copy fast. How to Use AI to │ -│ │ │ Write Efficiently: Context in ShortlyAI Context is the content used to │ -│ │ │ guide the AI to return the results you want. Understanding this │ -│ │ │ context could be the most important skill you'll In-Depth ShortlyAI │ -│ │ │ Review: Is This "Hidden Gem" the Best GPT-3 Writing App? This review │ -│ │ │ will be constantly updated as changes in the GPT-3 AI writing app │ -│ │ │ market make it necessary. This review is from April 2021. I Advanced │ -│ │ │ ShortlyAI: Granular Control of GPT-3 AI Output /instruct [Write a │ -│ │ │ witty introduction t │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://www.henshu.a │ Henshu - Writing │ Transform your content from ordinary to extraordinary using our AI- │ -│ i/ │ Made Extraordinary │ powered editor, designed to captivate, persuade, and create a lasting │ -│ │ │ impact on your audience. Paste your content here... Witness the Henshu │ -│ │ │ Magic Focus on your ideas; we'll handle the refinement. With our AI- │ -│ │ │ driven technology, effortlessly elevate your initial draft into │ -│ │ │ impeccably crafted content, tailored to captivate your target │ -│ │ │ audience. Harness the power of AI to craft compelling content that │ -│ │ │ drives conversions and captivates your target market. Effortlessly │ -│ │ │ enhance your content with optimized wording and formatting to │ -│ │ │ captivate your audience. Share your message in your native tongue, and │ -│ │ │ we'll ensure a natural, fluent translation that keeps your readers │ -│ │ │ engaged Adapt your writing style to resonate with your audience, │ -│ │ │ effortlessly transitioning between casual and professional tones. │ -│ │ │ Before Our coffee beans are sourced from the best farms around the │ -│ │ │ world. After Indulge in the rich flavors of our ethically-sourced, │ -│ │ │ world-class coffee beans. Elevate Your Business Exceptional writing │ -│ │ │ drives sales. You know it, and your audience knows it. Ready to │ -│ │ │ Elevate Your Writing? Craft engaging YouTube scripts, compelling │ -│ │ │ marketing copy, and irresistible blog posts - all with just a few │ -│ │ │ clicks. Get Started with Henshu Today │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://writing.ai/ │ Writing.AI │ Introducing the fastest way to write What is ? Be the first to know │ -│ │ │ when we launch Notify me Thanks, we'll keep you posted! Connect: │ -│ │ │ Contact Privacy Terms │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://maker.ai/ │ Maker AI - │ Create high quality in seconds, using GPT-4 Create high quality in │ -│ │ Ridiculously │ seconds, using AI Create high quality in seconds, using AI Generate │ -│ │ powerful AI content │ written & visual content in seconds through cutting-edge artificial │ -│ │ generation │ intelligence. Make magical content, now powered by the most powerful │ -│ │ │ AI ever. Brought to you by a team of the world's best engineers, │ -│ │ │ marketers & investors Write anything The world's most powerful AI- │ -│ │ │ powered text editor. Maker offers a powerful writing experience of a │ -│ │ │ world class word processor, juiced with the AI magic from GPT-4 that │ -│ │ │ helps you write faster and better. Write More Goodbye writer's block │ -│ │ │ Easily access AI tools as you type to quickly find what you need and │ -│ │ │ get back to work. Rephrase Say it better, say it different Not loving │ -│ │ │ how something sounds? Rephrase anything you’ve written to strike a │ -│ │ │ better note. Spelling & Grammar Your personal editor Spelling & │ -│ │ │ grammar checks to ensure your work is always publish-ready. Super- │ -│ │ │ charge with AI templates Blog post Write amazing blogposts 10x faster │ -│ │ │ Landing page High-converting copy in seconds. Product descriptions │ -│ │ │ Effective descriptions for products. Google ad Drive traffic with │ -│ │ │ compelling ad copy. Facebook ad Easily build ads that convert more. │ -│ │ │ Linkedin post Professional posts that go viral. Instagram post │ -│ │ │ Entertaining Instagram captions. Twitter post Catchy tweets and in- │ -│ │ │ depth threads. Facebook post Create engaging Facebook posts. Create │ -│ │ │ anything Images, illustrations, graphic design & more - use the Maker │ -│ │ │ Art studio to create beautiful visual content - for free - using AI. │ -│ │ │ Join thousands of marketers, entrepreneurs & creators who have │ -│ │ │ transformed how they create content using Maker.ai every day. Pricing │ -│ │ │ The right price for you, whoever you are From young professionals to │ -│ │ │ content power users, the Maker AI content suite gives you everything │ -│ │ │ you need to create high-quality content pieces in seconds, powered by │ -│ │ │ GPT-4. Unlimited blog posts generated Unlimited editor AI tools │ -│ │ │ Unlimited access to templates Unlimited i │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://jenni.ai/blo │ Charley.ai Review │ Are you looking to boost your efficiency in writing? Look no further │ -│ g/charley-ai-review │ 2023 | Pros & Cons - │ than Charley.ai! Our in-depth review of this tool will uncover all the │ -│ │ Is it Worth it? │ pros and cons to help you decide if it's worth it! Writing essays, │ -│ │ │ blog posts, and detailed articles can sometimes be tedious. Whether │ -│ │ │ you're working on a high school paper, product reviews, or even │ -│ │ │ product descriptions, staying focused and ensuring that your writing │ -│ │ │ is up to par can be difficult. A lot of research must be done in order │ -│ │ │ to create an essay that is accurate and authoritative. When you add in │ -│ │ │ the fact that you've got to write in a language that's grammatically │ -│ │ │ correct, the task gets much harder. Charley.ai can help you with all │ -│ │ │ of that! This AI-powered application automates your writing process │ -│ │ │ and provides all the information that you need to make your sentences │ -│ │ │ stronger, more relevant, and more engaging. It also offers an editing │ -│ │ │ feature that makes it easier to fix mistakes and improve your essays. │ -│ │ │ So if you're in the market for a writing tool that can help you write │ -│ │ │ better papers, Charley.ai is a great fit. But first, let's get to know │ -│ │ │ a little more about Charley.ai and its features to help you decide if │ -│ │ │ it's the right fit for you or not. Features Charley.ai uses an in- │ -│ │ │ house algorithm to automatically analyze your paper and provide │ -│ │ │ feedback and suggestions on grammar and style issues that can be │ -│ │ │ improved upon. GPT-3 is also used for automatic text generation, which │ -│ │ │ allows you to craft sentences and paragraphs in a matter of seconds. │ -│ │ │ AI-Powered Essay Writing: Charley.ai uses advanced algorithms and │ -│ │ │ artificial intelligence to help you create high-quality essays quickly │ -│ │ │ and easily. Customizable Templates: The platform offers a variety of │ -│ │ │ customizable templates to help you structure your essay based on your │ -│ │ │ specific needs. Grammar and Style Suggestions: Charley.ai provides │ -│ │ │ real-time suggestions on grammar, style, and syntax, allowing you to │ -│ │ │ create well-written and polished essays. Research Assistance: The │ -│ │ │ platform i │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://magickpen.co │ MagickPen │ What is MagickPen? MagickPen, an AI-powered writing tool, unleashes │ -│ m/ │ │ the full potential of GPT-3, generating articles, papers, reports, │ -│ │ │ stories, ads, and jokes with ease. It also includes translation, │ -│ │ │ grammar check, and code repair functions to enhance your writing │ -│ │ │ capabilities. Is this app free? MagickPen provides 10 trial credits │ -│ │ │ per week for free accounts, which can be used without logging in. To │ -│ │ │ obtain more credits, you can purchase a Pro or Subscription account. │ -│ │ │ What's the difference between free and paid accounts? Free accounts │ -│ │ │ are limited in both the number of available uses and the number of │ -│ │ │ words generated per use (1,000 words). Paid accounts offer up to 3,000 │ -│ │ │ words per use, and access to exclusive customer service. How can I │ -│ │ │ purchase credits? You can click on the Buy Credits button next to │ -│ │ │ Generate or choose a plan on our Pricing page. We accept various │ -│ │ │ payment methods, such as credit card, PayPal, Apple Pay, Google Pay, │ -│ │ │ Alipay, and WeChat Pay, etc. Purchase is simple and fast. Do │ -│ │ │ students get education discounts? Yes! If you're a student or teacher │ -│ │ │ with an edu email, email us at [email protected] to receive a 40% │ -│ │ │ education discount code. How can I login and use my credits? Once │ -│ │ │ you purchase credits, you'll be redirected to account validation and │ -│ │ │ login. If not, or if you need to use credits on a different device, │ -│ │ │ you can validate your account manually: How do I use credits in │ -│ │ │ MagickPen? How can I use MagickPen effectively? MagickPen is easy │ -│ │ │ to use. Just choose the type of writing, role, and topic, and receive │ -│ │ │ great content in seconds. Advanced settings allow customization of │ -│ │ │ language, tone, length, and format. For more precise results, please │ -│ │ │ provide a detailed topic description. If needed, our Article Outline │ -│ │ │ Writing tool can assist you. What's the difference between Pro and │ -│ │ │ Subscription accounts? Upgrade to a Pro account for flexible choices │ -│ │ │ of 100, 300, and 1000 credits, without time limits. The more you │ -│ │ │ purchase, the more savings you'l │ -├──────────────────────┼──────────────────────┼────────────────────────────────────────────────────────────────────────┤ -│ https://boo.ai/ │ boo.ai │ The simplest way to write with AI Boo is a beautifully simple writing │ -│ │ │ app that gives you superpowers. Boo uses AI to help you write faster │ -│ │ │ than ever. Make it your own Boo learns your writing style and gains │ -│ │ │ context over time. The more you write with Boo, the more it will sound │ -│ │ │ like you. Effortless editing Boo goes beyond basic spelling and │ -│ │ │ grammar checks, and will make suggestions to improve the style, tone, │ -│ │ │ and structure of your writing. Instant feedback Boo will provide │ -│ │ │ professional feedback and recommendations on ways to improve your │ -│ │ │ writing. Whatever you write, Boo can help. From property descriptions │ -│ │ │ to business plans, emails to essays, Boo can help you write better, │ -│ │ │ faster. FAQ What is Boo? Boo is a new kind of text editor, that uses │ -│ │ │ AI to generate copy, make suggestions, and help you brainstorm — all │ -│ │ │ in a simple text editor interface. How does the AI work? Boo uses a │ -│ │ │ technology called GPT-3 for content generation. GPT-3 is a language │ -│ │ │ model that can generate text based on natural language prompts. It’s │ -│ │ │ trained on a huge dataset of text, and can write text that is │ -│ │ │ indistinguishable from human writing. What does Boo cost? Every plan │ -│ │ │ comes with a 3-day free trial, with no credit card required. At any │ -│ │ │ time during your trial, you can choose to subscribe to Boo starting at │ -│ │ │ $8/month. What happens when my trial ends? If you decide not to │ -│ │ │ subscribe to Boo during your trial, you will automatically be │ -│ │ │ downgrade to the Free plan, which is limited to 2,000 words per │ -│ │ │ month.You can upgrade to a paid plan at any time. Can Boo format text? │ -│ │ │ Boo uses Markdown, a simple plain text formatting syntax to help you │ -│ │ │ stay in the writing flow. What’s the difference between Boo and │ -│ │ │ Jasper? Jasper is a similar product that uses GPT-3 to generate copy. │ -│ │ │ Boo is designed to be faster and simpler. In addition to being a great │ -│ │ │ app for copywriting, Boo is also perfect for brainstorming, taking │ -│ │ │ notes, writing emails, or just experimenting with AI. “I have been │ -│ │ │ experimenting with different AI servi │ -╘══════════════════════╧══════════════════════╧════════════════════════════════════════════════════════════════════════╛ - - -╒═════╤══════════════════════════════════════════════════════╤═════════════╕ -│ │ Keywords │ Relevance │ -╞═════╪══════════════════════════════════════════════════════╪═════════════╡ -│ 0 │ ai writer essay │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 1 │ ai writer humanizer │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 2 │ ai writer mod apk │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 3 │ ai writer rewriter │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 4 │ ai writer story │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 5 │ ai writer tool │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 6 │ ai writer youtube │ 1251 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 7 │ ai writer app │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 8 │ ai writer by picsart │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 9 │ ai writer checker │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 10 │ ai writer detector │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 11 │ ai writer email │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 12 │ ai writer free │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 13 │ ai writer generator │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 14 │ ai writer hindi │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 15 │ ai writer in hindi │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 16 │ ai writer jobs │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 17 │ ai writer koala │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 18 │ ai writer like chat gpt │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 19 │ ai writer mail │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 20 │ ai writer online free │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 21 │ ai writer picsart │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 22 │ ai writer quillbot │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 23 │ ai writer remover │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 24 │ ai writer sentence │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 25 │ ai writer to human │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 26 │ ai writer ubersuggest │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 27 │ ai writer without login │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 28 │ ai writer yamm │ 1250 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 29 │ ai writer no plagiarism │ 1150 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 30 │ ai writer extension │ 1050 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 31 │ ai writer quicktools by picsart │ 1050 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 32 │ ai writer blog │ 952 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 33 │ ai writer book │ 951 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 34 │ ai writer best │ 950 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 35 │ ai writer jobs remote │ 950 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 36 │ ai writer summary │ 950 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 37 │ ai writer is a generative ai tool │ 900 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 38 │ ai writer without plagiarism │ 900 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 39 │ ai writer song │ 851 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 40 │ ai writer letter │ 850 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 41 │ ai writer neil patel │ 850 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 42 │ ai writer semrush │ 850 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 43 │ ai writer free online │ 800 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 44 │ ai writer rephrase │ 800 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 45 │ ai writer email free │ 750 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 46 │ ai writer google │ 750 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 47 │ ai writer netlify │ 750 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 48 │ ai writer pro │ 651 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 50 │ ai writer book free │ 650 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 51 │ ai writer chat gpt │ 650 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 52 │ ai writer online │ 650 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 53 │ ai writer paragraph │ 650 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 54 │ ai writer ai │ 607 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 55 │ ai writer assistant │ 606 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 56 │ ai writer article │ 605 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 57 │ ai writer apk │ 604 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 58 │ ai writer ahrefs │ 603 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 59 │ ai writer api │ 602 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 60 │ ai writer no sign up │ 602 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 62 │ what is writer's block │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 63 │ how to use grammarly ai writer │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 64 │ why am i writer │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 65 │ best ai writer │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 66 │ ai vs writers │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 67 │ ai and writers strike │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 68 │ ai writer app free │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 69 │ ai writer bot │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 70 │ ai writer content generator │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 71 │ ai writer download │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 72 │ ai writer email essay writing │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 73 │ ai writer for resume │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 74 │ ai writer grammarly │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 75 │ ai writer hyperwrite │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 76 │ ai writer image │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 77 │ ai writer job description │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 78 │ writer ai knowledge graph │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 79 │ ai writer logo │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 80 │ ai writer meaning │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 81 │ ai writer no filter │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 82 │ ai writer outlier │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 83 │ ai writer plagiarism checker │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 84 │ ai writer question │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 85 │ ai writer reddit │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 86 │ ai writer strike │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 87 │ ai writer text generator │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 88 │ ai writer unlimited words │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 89 │ ai writer vs chatgpt │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 90 │ ai writer website │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 91 │ ia writer x-callback-url │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 92 │ ai writer you │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 93 │ ia writer zettelkasten │ 601 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 95 │ writers strike │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 96 │ how to use ia writer │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 97 │ why am i bad writer │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 98 │ best ai writer free │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 99 │ jasper ai vs writer │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 100 │ ai and writers │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 101 │ ai writer apk mod │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 102 │ ai writer better than chat gpt │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 103 │ ai writer chrome extension │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 104 │ ai writer description │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 105 │ ai writer enhancer │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 106 │ ai writer for email │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 107 │ ai writer generator free online │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 108 │ ai writer helper free │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 109 │ ai writer is ai tool │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 110 │ ai writer jasper │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 111 │ ia writer keyboard shortcuts │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 112 │ ai writer linkedin │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 113 │ ai writer microsoft │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 114 │ ai writer no detection │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 115 │ ai writer open source │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 116 │ ai writer poem │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 117 │ ai quote writer │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 118 │ ai writer resume │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 119 │ ai writer simplified │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 120 │ ai writer toolbaz │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 121 │ ai writer unblocked │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 122 │ ai writer video │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 123 │ ai writer without ai detection │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 124 │ what is ai writer │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 125 │ writer ai your people will love │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 126 │ ia writer zotero │ 600 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 127 │ what is writer's cramp │ 562 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 128 │ best ai writer reddit │ 562 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 129 │ ai writer vs human writer │ 562 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 131 │ what is writer's craft │ 561 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 132 │ best ai writer for academic writing │ 561 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 133 │ ai writer deep ai │ 561 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 134 │ ai writer for kids │ 561 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 135 │ ai writer undetectable │ 561 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 136 │ ai writer vietnamese │ 561 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 138 │ what is writer's effect │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 139 │ best ai writer for essays │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 140 │ ai writer canva │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 141 │ ai writer detector reddit │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 142 │ ai writer for linkedin │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 143 │ ai writer gpt │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 144 │ ai writer humanizer free │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 145 │ ai writer introduction │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 146 │ ai writer jon morrow │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 147 │ ai report writer ks2 │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 148 │ ai writer login │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 149 │ ai writer mac │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 150 │ ai writer online no login │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 151 │ ai quiz writer │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 152 │ ai writer tool free │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 153 │ ai writer unblocked free │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 154 │ ai voice writer │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 155 │ ai writer wikipedia │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 156 │ ia writer youtube │ 560 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 158 │ what is writer in the dark about │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 159 │ why ai can't replace writers │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 160 │ best ai writer app │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 161 │ ai writer chatbot assistant mod apk │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 162 │ ai writer deepl │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 163 │ ai writer free download │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 164 │ ai writer github │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 165 │ ai writer hubspot │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 166 │ ai writer identifier │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 167 │ ai writer job reddit │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 168 │ typeai ai keyboard & writer │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 169 │ ai writer letter free │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 170 │ ai writer maker │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 171 │ ai writer outline │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 172 │ ai writer pro mod apk │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 173 │ ai query writer │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 174 │ ai writer review │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 175 │ ai writer that can't be detected │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 176 │ ai writer uk │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 177 │ ai vow writer │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 178 │ ai writer with sources │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 179 │ ia writer yaml │ 559 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 181 │ what is writer's voice │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 182 │ why ai will replace writers │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 183 │ best ai writer content generator & writing assistant │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 184 │ ai writer checker openai │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 185 │ ai writer deutsch │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 186 │ ai writer essay free │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 187 │ ai writer for gmail │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 188 │ ai writer grammar checker │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 189 │ ai writer hiring │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 190 │ ai writer improver │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 191 │ ai writer jobs uk │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 192 │ typeeasy-ai keyboard & writer │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 193 │ ai writer like human │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 194 │ ai writer marketing │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 195 │ ai writer novel │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 196 │ ai writer openai │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 197 │ ai writer paraphrase │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 198 │ ai question writer for teachers │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 199 │ ai writer remote jobs │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 200 │ ai writer tagalog │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 201 │ ai writer undetectable free │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 202 │ writer ai valuation │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 203 │ ai writer what is it │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 204 │ ai love you writer │ 558 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 206 │ what is writer's purpose │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 208 │ best ai writer for research papers │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 209 │ ai writer biography │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 210 │ ai writer chat │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 212 │ ai writer editor │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 213 │ ai writer free app │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 214 │ ai writer generator essay │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 215 │ ai writer hand │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 216 │ ai writer indonesia │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 217 │ ai writer jobs work from home │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 218 │ katteb ai writer │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 219 │ ai writer lifetime deal │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 220 │ ai writer macos │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 221 │ ai writer not blocked │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 222 │ ai writer on canva │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 223 │ ai writer prompt │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 224 │ ai quick writer │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 225 │ ai writer rytr │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 226 │ ai writer script │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 227 │ ai writer test │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 228 │ ai writer unlocked │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 229 │ ai verse writer │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 230 │ ai writer with references │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 231 │ ai writer that writes like you │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 232 │ zyro ai writer │ 557 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 234 │ writerbay │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 236 │ can ai replace writers │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 237 │ best ai writer for books │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 238 │ ai and writers guild │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 239 │ ai writer bing │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 240 │ ai writer content generator free │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 241 │ ai writer dutch │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 242 │ ai writer expander │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 243 │ ai writer from picture │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 244 │ ai writer generator no sign up │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 245 │ ai writer hider │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 246 │ ai writer indonesia free │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 247 │ ai writer jenni │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 248 │ koala ai writer review │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 249 │ ai writer like chatgpt free │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 250 │ ai writer mac app │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 251 │ ai writer name │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 252 │ ai writer offline │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 253 │ ai writer perchance │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 254 │ ia writer quattro │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 255 │ ai writer report │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 256 │ ai writer salary │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 257 │ ai writer text │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 258 │ ai writer unrestricted │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 259 │ ai vignette writer │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 260 │ ai writer with no filter │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 261 │ can ai write stories │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 263 │ zero ai writer │ 556 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 265 │ what is writer's workshop │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 266 │ how to write an ai character │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 267 │ can ai reason │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 268 │ best ai writer detector │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 270 │ ai writer arabic │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 271 │ ai writer bypass │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 272 │ ai writer cover letter │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 273 │ ai writer dating profile │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 274 │ ai writer edit pad │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 275 │ ai writer free picsart │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 276 │ ai writer greek │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 277 │ ai writer hollywood │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 278 │ ai writer in arabic │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 279 │ artificial intelligence writer jobs │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 280 │ ai essay writer for kids │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 281 │ ai writer lyrics │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 282 │ ai writer malay │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 283 │ ai writer no account │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 284 │ ai obituary writer │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 285 │ ai writer paper │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 286 │ ia writer quattro font download │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 287 │ ai writer reflection │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 288 │ ai writer scanner │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 290 │ ai writer unlimited │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 291 │ ai vba writer │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 292 │ ai writer wordpress plugin │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 295 │ zoho ai writer │ 555 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 297 │ what is writer safeguard │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 298 │ how to send an ai file │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 299 │ ai writer reviews │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 300 │ best ai writer generator │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 301 │ ai vs human writer │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 302 │ can ai write software │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 303 │ ai writer app download │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 304 │ ai writer bard │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 305 │ ai writer changer │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 306 │ ai writer detector openai │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 307 │ ai writer editor free │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 308 │ ai writer free tool │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 309 │ ai writer generator online │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 310 │ ai writer haiku │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 311 │ ai writer indeed │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 312 │ ai journal writer │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 313 │ ai story writer for kids │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 314 │ ai writer legal │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 315 │ ai writer math │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 316 │ ai writer novel free │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 317 │ ai objective writer │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 318 │ ai writer personal statement │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 319 │ ia writer quattro s font │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 320 │ ai writer remote │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 321 │ ai writer speech │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 322 │ ai writer tinywow │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 323 │ ai writer unfiltered │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 324 │ ia writer vs ulysses │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 325 │ ai writer with prompt │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 328 │ ai writing software code │ 554 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 330 │ what is writer's bump │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 331 │ how to become an author and illustrator │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 332 │ why ai was invented │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 333 │ best ai writer free online │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 335 │ will ai replace authors │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 336 │ ai writer anyword │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 337 │ ai writer browser │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 338 │ ai writer chatbot assistant │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 339 │ ai writer discord bot │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 340 │ ai writer english │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 341 │ ai writer for research paper │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 342 │ ai writer generator app │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 343 │ ai headline writer │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 344 │ ai writer in spanish │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 345 │ ai javascript writer │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 346 │ caktus ai writer │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 347 │ ai writer letter of recommendation │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 348 │ ai writer markiplier │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 349 │ ai writer not detectable │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 350 │ ai oral writer │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 351 │ ai writer pro apk │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 352 │ ia writer quattro github │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 353 │ ai writer rap │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 354 │ ai writer software │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 355 │ ai writer thesis │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 356 │ ai writer university │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 357 │ ia writer vs obsidian │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 358 │ ai writer with no restrictions │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 360 │ will ai replace writers │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 361 │ convert ai to ai │ 553 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 363 │ what is writer's effect in igcse │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 364 │ how to make ai write a story │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 365 │ why ai now │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 366 │ best ai writer for blog │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 367 │ best ai writing assistant software │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 369 │ ai writer argumentative essay │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 370 │ ai writer best free │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 371 │ ai writer corrector │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 372 │ ai writer demo │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 373 │ ai writer explicit │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 374 │ ai writer free no sign up │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 375 │ ai writer generator unblocked │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 376 │ ai hook writer │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 377 │ ai writer in canva │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 378 │ ai jingle writer │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 379 │ ai poem writer for kids │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 380 │ ai writer love letter │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 381 │ ai writer music │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 382 │ ai writer notion │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 383 │ ai code writer │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 384 │ ai write product description │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 385 │ ai essay writer quillbot │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 386 │ ai writer research │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 387 │ ai writer summit │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 388 │ ai writer that is undetectable free │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 389 │ ai writer unblocked no sign up │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 390 │ ia writer vs scrivener │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 391 │ ai writer with references free │ 552 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 396 │ what is writer in libreoffice │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 397 │ how to write ai program │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 398 │ what is ai writing │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 399 │ best ai writer for novels │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 400 │ best ai writer tools │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 402 │ ai writer ask │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 403 │ ai writer bio │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 404 │ ai writer capcut │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 405 │ ai writer dnd │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 406 │ ai writer email & ai-keyboard │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 407 │ ai writer free essay │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 408 │ ai writer generator nsfw │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 409 │ ai html writer │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 410 │ ai writer improver free │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 411 │ ai jiang writer │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 412 │ ia writer kostenlos │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 413 │ ai writer like grammarly │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 414 │ ia writer markdown │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 415 │ ai writer nova │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 416 │ ai paragraph writer │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 417 │ ai writer pdf │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 418 │ ai writer free quillbot │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 419 │ ai writer response │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 420 │ ai writer school │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 421 │ ai writer templates │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 422 │ ai urdu writer │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 423 │ ia writer vs bear │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 424 │ ai writer with images │ 551 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 428 │ ai writer 2.0 │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 429 │ what is writer's tone │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 430 │ how to write ai algorithms │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 431 │ why ai matters │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 432 │ best ai writer for students │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 433 │ best ai writers │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 435 │ ai writer academic │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 436 │ ai writer buddy │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 437 │ ai writer cv │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 438 │ ai document writer │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 439 │ ai writer editor jobs │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 440 │ ai writer for google docs │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 441 │ ai writer good │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 442 │ ai history writer │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 443 │ ai writer icon │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 444 │ ai java writer │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 445 │ ai writer kostenlos │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 446 │ ai letter writer without login │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 447 │ ai writer.m │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 448 │ ai writer narrative │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 449 │ ai opinion writer │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 450 │ ai writer program │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 451 │ quick ai writer mod apk │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 452 │ ai writer research paper │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 453 │ ai writer seo │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 454 │ ai writer tone │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 455 │ writer ai use cases │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 456 │ ia writer vs typora │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 457 │ ai writer with citation │ 550 │ -├─────┼──────────────────────────────────────────────────────┼─────────────┤ -│ 459 │ ai write up │ 550 │ -╘═════╧══════════════════════════════════════════════════════╧═════════════╛ - - -╒═════╤═════════════════════════════════════╤═════════════╤═════════════════╕ -│ │ Keywords │ Relevance │ cluster_label │ -╞═════╪═════════════════════════════════════╪═════════════╪═════════════════╡ -│ 0 │ ai writer essay │ 1251 │ 0 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 2 │ ai writer mod apk │ 1251 │ 0 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 3 │ ai writer rewriter │ 1251 │ 0 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 4 │ ai writer story │ 1251 │ 0 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 5 │ ai writer tool │ 1251 │ 0 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 34 │ ai writer best │ 950 │ 1 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 65 │ best ai writer │ 601 │ 1 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 98 │ best ai writer free │ 600 │ 1 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 128 │ best ai writer reddit │ 562 │ 1 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 132 │ best ai writer for academic writing │ 561 │ 1 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 25 │ ai writer to human │ 1250 │ 2 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 63 │ how to use grammarly ai writer │ 601 │ 2 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 96 │ how to use ia writer │ 600 │ 2 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 129 │ ai writer vs human writer │ 562 │ 2 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 193 │ ai writer like human │ 558 │ 2 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 91 │ ia writer x-callback-url │ 601 │ 3 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 93 │ ia writer zettelkasten │ 601 │ 3 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 111 │ ia writer keyboard shortcuts │ 600 │ 3 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 126 │ ia writer zotero │ 600 │ 3 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 156 │ ia writer youtube │ 560 │ 3 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 27 │ ai writer without login │ 1250 │ 4 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 38 │ ai writer without plagiarism │ 900 │ 4 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 40 │ ai writer letter │ 850 │ 4 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 123 │ ai writer without ai detection │ 600 │ 4 │ -├─────┼─────────────────────────────────────┼─────────────┼─────────────────┤ -│ 148 │ ai writer login │ 560 │ 4 │ -╘═════╧═════════════════════════════════════╧═════════════╧═════════════════╛ - - -╒════╤═══════════════════════╤═══════════════╤═══════════════════╤══════════════════════════╤═══════════════╤══════════════════════╕ -│ │ Top- formattedValue │ topic_title │ Top- topic_type │ Rising- formattedValue │ topic_title │ Rising- topic_type │ -╞════╪═══════════════════════╪═══════════════╪═══════════════════╪══════════════════════════╪═══════════════╪══════════════════════╡ -│ 0 │ 100 │ Email │ Topic │ +40% │ Email │ Topic │ -╘════╧═══════════════════════╧═══════════════╧═══════════════════╧══════════════════════════╧═══════════════╧══════════════════════╛ - - -╒════╤═════════════════════════╤═════════════════════════════════════╤══════════════════════╤════════════════════════════════╕ -│ │ K📢eyword Col1 │ K📢eyword Col2 │ K📢eyword Col3 │ K📢eyword Col4 │ -╞════╪═════════════════════════╪═════════════════════════════════════╪══════════════════════╪════════════════════════════════╡ -│ 0 │ ai writer essay │ ai writer mod apk │ ai writer rewriter │ ai writer story │ -├────┼─────────────────────────┼─────────────────────────────────────┼──────────────────────┼────────────────────────────────┤ -│ 1 │ ai writer tool │ ai writer best │ best ai writer │ best ai writer free │ -├────┼─────────────────────────┼─────────────────────────────────────┼──────────────────────┼────────────────────────────────┤ -│ 2 │ best ai writer reddit │ best ai writer for academic writing │ ai writer to human │ how to use grammarly ai writer │ -├────┼─────────────────────────┼─────────────────────────────────────┼──────────────────────┼────────────────────────────────┤ -│ 3 │ how to use ia writer │ ai writer vs human writer │ ai writer like human │ ia writer x-callback-url │ -├────┼─────────────────────────┼─────────────────────────────────────┼──────────────────────┼────────────────────────────────┤ -│ 4 │ ia writer zettelkasten │ ia writer keyboard shortcuts │ ia writer zotero │ ia writer youtube │ -├────┼─────────────────────────┼─────────────────────────────────────┼──────────────────────┼────────────────────────────────┤ -│ 5 │ ai writer without login │ ai writer without plagiarism │ ai writer letter │ ai writer without ai detection │ -├────┼─────────────────────────┼─────────────────────────────────────┼──────────────────────┼────────────────────────────────┤ -│ 6 │ ai writer login │ │ │ │ -╘════╧═════════════════════════╧═════════════════════════════════════╧══════════════════════╧════════════════════════════════╛ - - diff --git a/main_config b/main_config index a3018583..36af4435 100644 --- a/main_config +++ b/main_config @@ -128,3 +128,38 @@ include_domains = # similar_url : A single URL, this will instruct search engines to give results similar to the given URL. similar_url = + + +########################################################### +# +# Creating Your Virtual content writing Team. +# +# One can choose from the following roles and make a virtual team. +# +# Chief Editor - Oversees the research process and manages the team. +# Researcher (gpt-researcher) - A specialized autonomous agent that conducts in depth research on a given topic. +# Editor - Responsible for planning the research outline and structure. +# Reviewer - Validates the correctness of the research results given a set of criteria. +# Revisor - Revises the research results based on the feedback from the reviewer. +# Writer - Responsible for compiling and writing the final report. +# Publisher - Responsible for publishing the final report in various formats. +# +########################################################### + +# Choose multi-agent framework, for now its default to Crewai. More options for langgraph, agentgpt, autogpt etc. + +# Step1: Choose the team members from this list: chief_editor, researcher, editor, reviewer, writer, publisher +# Only the mentioned team members/agents will be included in your dream team. +your_content_team_members = chief_editor, researcher, editor, reviewer, writer + +# Step2: Edit team members for your need in workspace/my_content_team folder. +# Personlization of AI team members for your needs/requirements. Imagine a real team and think along those lines. +# To get you started, refer these files in workspace folder, these are template Agents, one can modify for their company's content needs. +# Tip: Start small, define roles, goals and give backstory which makes Agents work for you. +# Run the example and keep a quality control. Change Persona of the agent, tone of voice, personality etc. +# Check if researcher is giving right results and check out of each Agent. Iterate and refine each agents, until they write to your +# requirements. This will take time but you will end up with a AI Agents content writing team for your own needs(Free, Free, Free). +# where_your_team_at = Provide the directory location where Team members are defined. +# Check with template files in workspace/my_content_team folder. +# where_your_team_at = +