├── .github ├── ISSUE_TEMPLATE │ └── section-request.md └── pull_request_template.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Docs ├── Audio_Processing.md ├── Automation.md ├── Coding_and_Software_Development.md ├── Computer_Vision.md ├── Data_Analysis.md ├── Foundation_Models.md ├── Other_Applications.md ├── Search_and_Research_Tools.md ├── Supplementary │ └── Multilinguality.md └── Tutorials_and_Learning_Resources.md ├── Images ├── AIEnhancedWork.png ├── AIEnhancedWork.svg ├── LLMScoreEngine.png ├── Licence │ ├── opensource.svg │ └── proprietary.svg ├── MLLMs.svg ├── OpenLLMs.svg ├── Organization │ ├── 01AI.svg │ ├── AI21.svg │ ├── Adobe.svg │ ├── Agentica.svg │ ├── Alibaba.svg │ ├── AllHands.svg │ ├── Allen.svg │ ├── AntGroup.svg │ ├── Anthropic.svg │ ├── AssemblyAI.svg │ ├── Baidu.svg │ ├── BigCode.svg │ ├── BigModel.svg │ ├── BlackForest.svg │ ├── ByteDance.svg │ ├── Cartesia.svg │ ├── Cognitive.svg │ ├── CognitiveComputations.svg │ ├── Cohere.svg │ ├── Coqui.svg │ ├── DeepCogito.svg │ ├── Deepgram.svg │ ├── Deepseek.svg │ ├── Doubao.svg │ ├── Elevenlabs.svg │ ├── Fireworks.svg │ ├── FishAudio.svg │ ├── FlagOpen.svg │ ├── Genmo.svg │ ├── Google.svg │ ├── Groq.svg │ ├── Gryphe.svg │ ├── Hailou.svg │ ├── HuggingFace.svg │ ├── IBM.svg │ ├── Ideogram.svg │ ├── InternLM.svg │ ├── JetBrains.svg │ ├── Kakao.svg │ ├── Kling.svg │ ├── Kyutai.svg │ ├── LG.svg │ ├── LMNT.svg │ ├── Latitude.svg │ ├── Liquid.svg │ ├── Llmslabs.svg │ ├── Luma.svg │ ├── Map.svg │ ├── Meta.svg │ ├── MetaVoice.svg │ ├── Microsoft.svg │ ├── Midjourney.svg │ ├── MiniMax.svg.svg │ ├── Mistral.svg │ ├── Modelscope.svg │ ├── MoonshotAI.svg │ ├── MurfAI.svg │ ├── MyShell.svg │ ├── Nexusflow.svg │ ├── NousResearch.svg │ ├── Numina.svg │ ├── Ollama.svg │ ├── OpenAI.svg │ ├── OpenBMB.svg │ ├── OpenRouter.svg │ ├── OpenThoughts.svg │ ├── Oxygen.svg │ ├── Perplexity.svg │ ├── Pika.svg │ ├── PlayAI.svg │ ├── Playground.svg │ ├── Recraft.svg │ ├── Reka.svg │ ├── Rhymes.svg │ ├── Runway.svg │ ├── ServiceNow.svg │ ├── Shisa.svg │ ├── Speechmatics.svg │ ├── Stability.svg │ ├── Steelskull.svg │ ├── StepFun.svg │ ├── StyleTTS.svg │ ├── THUDM.svg │ ├── TII.svg │ ├── Tencent.svg │ ├── TheDrummer.svg │ ├── Xiaomi.svg │ ├── amazon.svg │ ├── databricks.svg │ ├── fal.svg │ ├── kolors.svg │ ├── mlabonne.svg │ ├── nvidia.svg │ ├── rednote.svg │ └── xAI.svg ├── Pricing │ ├── Freemium.svg │ ├── Paid.svg │ └── free.svg ├── ProprietaryLLMs.svg ├── Tutorials │ ├── CodingAI.png │ ├── ImageGeneration.png │ ├── PrivacyAI.png │ ├── Quantization.png │ └── TextGeneration.png └── VLMs.svg ├── LICENSE.md ├── README.md ├── SECURITY.md ├── Scoring └── scoring_framework.md └── Tutorials ├── How-to-Use-AI-Privately.md ├── how-to-run-image-generation-on-your-machine.md ├── how-to-run-llms-on-your-machine.md ├── how-to-select-the-right-quantized-model.md └── how-to-use-llms-in-coding.md /.github/ISSUE_TEMPLATE/section-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Section request 3 | about: Section Request Template 4 | title: "[Section Request]" 5 | labels: '' 6 | assignees: LSeu-Open 7 | 8 | --- 9 | 10 | **Section Name:** [Insert section name, e.g. "AI-powered Chatbots"] 11 | 12 | **Description:** [Insert brief description of the section, e.g. "AI-powered chatbots use natural language processing to simulate human-like conversations and provide automated customer support."] 13 | 14 | **Tools:** 15 | 16 | | Tool | Description | Licence | Pricing | 17 | | --- | --- | --- | --- | 18 | | [Tool 1](Link to tool) | [Brief description of tool] | [Licence type] | [Pricing model] | 19 | | [Tool 2](Link to tool) | [Brief description of tool] | [Licence type] | [Pricing model] | 20 | | ... | ... | ... | ... | 21 | 22 | **Rationale:** [Insert brief explanation of why this section is important and how it relates to the repository's goals] 23 | 24 | **Additional Resources:** [Insert any additional resources, such as tutorials, documentation, or research papers, that may be relevant to the section] 25 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Pull Request template 2 | Please, go through these steps before you submit a PR. 3 | 4 | **Title:** [Insert title of the pull request, e.g. "Add new section: AI-powered Website Builders"] 5 | 6 | **Description:** 7 | 8 | This pull request [briefly describe the purpose of the pull request]. 9 | 10 | **General Checklist:** 11 | 12 | * [ ] I have updated the relevant files and folders 13 | * [ ] I have followed the repository's contributing guidelines 14 | * [ ] I have included a detailed description of the changes in this pull request 15 | * [ ] Have you checked to ensure there aren't other open [Pull Requests](https://github.com/LSeu-Open/AIEnhancedWork/pulls) for the same update/change? 16 | 17 | 18 | **New Section Submissions:** 19 | 20 | * **Section Name:** [Insert name of the new section, e.g. "AI-powered Website Builders"] 21 | * **Description:** [Insert brief description of the new section] 22 | * **Rationale:** [Insert brief explanation of why this section is important and how it relates to the repository's goals] 23 | 24 | **New Tool Submissions:** 25 | 26 | * **Tool Name:** [Insert name of the new tool, e.g. "Wix"] 27 | * **Description:** [Insert brief description of the new tool] 28 | * **Link:** [Insert link to the tool's website or documentation] 29 | * **Licence:** [Insert licence type, e.g. "Proprietary"] 30 | * **Pricing:** [Insert pricing model, e.g. "Freemium"] 31 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributions and suggestions to this repository are welcome. 2 | 3 | 1. [Fork this repository](https://help.github.com/articles/fork-a-repo/) 4 | 2. Make a change to README.md 5 | 3. [Submit a pull request](https://help.github.com/articles/creating-a-pull-request/). 6 | 7 | Please make sure your pull request follows these guidelines: 8 | 9 | - **Please search previous suggestions before making a new one, as yours may be a duplicate**. 10 | - Please make an individual pull request for *each* suggestion. 11 | - Use the same format as the one already done in the repos. 12 | - Keep descriptions concise 13 | - Order the projects alphabetically within each category. 14 | - Check your spelling, grammar and cross-linking. 15 | - New categories, or improvements to the existing categorization are welcome. 16 | 17 | *This is a curation of valuable resources for Ai Tools.. You should only contribute with suggestions that you and others would recommend.* 18 | 19 | Thank you for your suggestions! 20 | -------------------------------------------------------------------------------- /Images/AIEnhancedWork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/AIEnhancedWork.png -------------------------------------------------------------------------------- /Images/LLMScoreEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/LLMScoreEngine.png -------------------------------------------------------------------------------- /Images/Licence/opensource.svg: -------------------------------------------------------------------------------- 1 | 2 | 35 | -------------------------------------------------------------------------------- /Images/Licence/proprietary.svg: -------------------------------------------------------------------------------- 1 | 2 | 31 | -------------------------------------------------------------------------------- /Images/Organization/01AI.svg: -------------------------------------------------------------------------------- 1 | 2 | 67 | -------------------------------------------------------------------------------- /Images/Organization/AI21.svg: -------------------------------------------------------------------------------- 1 | 2 | 37 | -------------------------------------------------------------------------------- /Images/Organization/Adobe.svg: -------------------------------------------------------------------------------- 1 | 2 | 34 | -------------------------------------------------------------------------------- /Images/Organization/Agentica.svg: -------------------------------------------------------------------------------- 1 | 2 | 31 | -------------------------------------------------------------------------------- /Images/Organization/Alibaba.svg: -------------------------------------------------------------------------------- 1 | 2 | 39 | -------------------------------------------------------------------------------- /Images/Organization/Allen.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Anthropic.svg: -------------------------------------------------------------------------------- 1 | 2 | 69 | -------------------------------------------------------------------------------- /Images/Organization/AssemblyAI.svg: -------------------------------------------------------------------------------- 1 | 2 | 37 | -------------------------------------------------------------------------------- /Images/Organization/Baidu.svg: -------------------------------------------------------------------------------- 1 | 2 | 50 | -------------------------------------------------------------------------------- /Images/Organization/BigModel.svg: -------------------------------------------------------------------------------- 1 | 2 | 45 | -------------------------------------------------------------------------------- /Images/Organization/Cohere.svg: -------------------------------------------------------------------------------- 1 | 2 | 54 | -------------------------------------------------------------------------------- /Images/Organization/DeepCogito.svg: -------------------------------------------------------------------------------- 1 | 2 | 31 | -------------------------------------------------------------------------------- /Images/Organization/Doubao.svg: -------------------------------------------------------------------------------- 1 | 2 | 48 | -------------------------------------------------------------------------------- /Images/Organization/Elevenlabs.svg: -------------------------------------------------------------------------------- 1 | 2 | 47 | -------------------------------------------------------------------------------- /Images/Organization/Fireworks.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/FlagOpen.svg: -------------------------------------------------------------------------------- 1 | 2 | 45 | -------------------------------------------------------------------------------- /Images/Organization/Google.svg: -------------------------------------------------------------------------------- 1 | 2 | 54 | -------------------------------------------------------------------------------- /Images/Organization/Groq.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Hailou.svg: -------------------------------------------------------------------------------- 1 | 2 | 45 | -------------------------------------------------------------------------------- /Images/Organization/Ideogram.svg: -------------------------------------------------------------------------------- 1 | 2 | 31 | -------------------------------------------------------------------------------- /Images/Organization/JetBrains.svg: -------------------------------------------------------------------------------- 1 | 2 | 49 | -------------------------------------------------------------------------------- /Images/Organization/Kakao.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Kling.svg: -------------------------------------------------------------------------------- 1 | 2 | 48 | -------------------------------------------------------------------------------- /Images/Organization/Kyutai.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Latitude.svg: -------------------------------------------------------------------------------- 1 | 2 | 31 | -------------------------------------------------------------------------------- /Images/Organization/Liquid.svg: -------------------------------------------------------------------------------- 1 | 2 | 53 | -------------------------------------------------------------------------------- /Images/Organization/Luma.svg: -------------------------------------------------------------------------------- 1 | 2 | 35 | -------------------------------------------------------------------------------- /Images/Organization/Map.svg: -------------------------------------------------------------------------------- 1 | 2 | 49 | -------------------------------------------------------------------------------- /Images/Organization/MetaVoice.svg: -------------------------------------------------------------------------------- 1 | 2 | 47 | -------------------------------------------------------------------------------- /Images/Organization/Microsoft.svg: -------------------------------------------------------------------------------- 1 | 2 | 63 | -------------------------------------------------------------------------------- /Images/Organization/Mistral.svg: -------------------------------------------------------------------------------- 1 | 2 | 56 | -------------------------------------------------------------------------------- /Images/Organization/Modelscope.svg: -------------------------------------------------------------------------------- 1 | 2 | 57 | -------------------------------------------------------------------------------- /Images/Organization/MurfAI.svg: -------------------------------------------------------------------------------- 1 | 2 | 51 | -------------------------------------------------------------------------------- /Images/Organization/MyShell.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Nexusflow.svg: -------------------------------------------------------------------------------- 1 | 2 | 47 | -------------------------------------------------------------------------------- /Images/Organization/Numina.svg: -------------------------------------------------------------------------------- 1 | 2 | 33 | -------------------------------------------------------------------------------- /Images/Organization/OpenBMB.svg: -------------------------------------------------------------------------------- 1 | 2 | 45 | -------------------------------------------------------------------------------- /Images/Organization/OpenRouter.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/Oxygen.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Perplexity.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/Pika.svg: -------------------------------------------------------------------------------- 1 | 2 | 47 | -------------------------------------------------------------------------------- /Images/Organization/PlayAI.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/Playground.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/Recraft.svg: -------------------------------------------------------------------------------- 1 | 2 | 42 | -------------------------------------------------------------------------------- /Images/Organization/Reka.svg: -------------------------------------------------------------------------------- 1 | 2 | 51 | -------------------------------------------------------------------------------- /Images/Organization/Rhymes.svg: -------------------------------------------------------------------------------- 1 | 2 | 31 | -------------------------------------------------------------------------------- /Images/Organization/Runway.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/ServiceNow.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/Speechmatics.svg: -------------------------------------------------------------------------------- 1 | 2 | 54 | -------------------------------------------------------------------------------- /Images/Organization/Stability.svg: -------------------------------------------------------------------------------- 1 | 2 | 52 | -------------------------------------------------------------------------------- /Images/Organization/StepFun.svg: -------------------------------------------------------------------------------- 1 | 2 | 48 | -------------------------------------------------------------------------------- /Images/Organization/StyleTTS.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/TII.svg: -------------------------------------------------------------------------------- 1 | 2 | 34 | -------------------------------------------------------------------------------- /Images/Organization/Xiaomi.svg: -------------------------------------------------------------------------------- 1 | 2 | 32 | -------------------------------------------------------------------------------- /Images/Organization/databricks.svg: -------------------------------------------------------------------------------- 1 | 2 | 42 | -------------------------------------------------------------------------------- /Images/Organization/fal.svg: -------------------------------------------------------------------------------- 1 | 2 | 30 | -------------------------------------------------------------------------------- /Images/Organization/kolors.svg: -------------------------------------------------------------------------------- 1 | 2 | 39 | -------------------------------------------------------------------------------- /Images/Organization/mlabonne.svg: -------------------------------------------------------------------------------- 1 | 2 | 65 | -------------------------------------------------------------------------------- /Images/Organization/rednote.svg: -------------------------------------------------------------------------------- 1 | 2 | 33 | -------------------------------------------------------------------------------- /Images/Organization/xAI.svg: -------------------------------------------------------------------------------- 1 | 2 | 43 | -------------------------------------------------------------------------------- /Images/Pricing/Freemium.svg: -------------------------------------------------------------------------------- 1 | 2 | 37 | -------------------------------------------------------------------------------- /Images/Pricing/Paid.svg: -------------------------------------------------------------------------------- 1 | 2 | 27 | -------------------------------------------------------------------------------- /Images/Pricing/free.svg: -------------------------------------------------------------------------------- 1 | 2 | 35 | -------------------------------------------------------------------------------- /Images/Tutorials/CodingAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/Tutorials/CodingAI.png -------------------------------------------------------------------------------- /Images/Tutorials/ImageGeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/Tutorials/ImageGeneration.png -------------------------------------------------------------------------------- /Images/Tutorials/PrivacyAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/Tutorials/PrivacyAI.png -------------------------------------------------------------------------------- /Images/Tutorials/Quantization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/Tutorials/Quantization.png -------------------------------------------------------------------------------- /Images/Tutorials/TextGeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSeu-Open/AIEnhancedWork/86aec3c3c71eafd5fc433ba181976afa1302a101/Images/Tutorials/TextGeneration.png -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | **Security Policy for [AIEnhancedWork](https://github.com/LSeu-Open/AIEnhancedWork)** 2 | 3 | **Reporting Security Issues** 4 | 5 | If you discover a security issue related to a tool linked in this repository, please report it to github.gnq01@simplelogin.com. We will respond promptly to address the issue. 6 | 7 | **Security Process** 8 | 9 | * We will acknowledge receipt of the report within 48 hours. 10 | * We will investigate the issue and provide guidance on how to mitigate the risk within 1 week. 11 | * We will notify users of the repository about the security issue and provide updates on the mitigation process. 12 | 13 | **Security Best Practices** 14 | 15 | * We follow best practices for securing our repository, including: 16 | + Regularly reviewing and updating the repository's content to ensure that links are valid and secure. 17 | + Providing guidance on how to use the linked tools securely. 18 | 19 | **Third-Party Tool Security** 20 | 21 | * We do not have control over the security of the tools linked in this repository. 22 | * We recommend that users exercise caution when using these tools and follow best practices for securing their own systems and data. 23 | 24 | **Security Contact** 25 | 26 | * [LSeu-Open](https://github.com/LSeu-Open) 27 | * github.gnq01@simplelogin.com 28 | 29 | **Revision History** 30 | 31 | * [05/27/2024]: Initial security policy created. 32 | -------------------------------------------------------------------------------- /Tutorials/how-to-select-the-right-quantized-model.md: -------------------------------------------------------------------------------- 1 |