developer VS autodoc

Compare developer vs autodoc and see what are their differences.

developer

the first library to let you embed a developer agent in your own app! (by smol-ai)

autodoc

Experimental toolkit for auto-generating codebase documentation using LLMs (by context-labs)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
developer autodoc
37 11
11,650 1,828
0.5% 2.0%
7.2 6.6
about 1 month ago 4 months ago
Python TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

developer

Posts with mentions or reviews of developer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-31.
  • DeepSeek Coder: Let the Code Write Itself
    3 projects | news.ycombinator.com | 31 Jan 2024
    > much of the work is repetitive, but it comes with its edge cases that we need to look out for

    Then don't use AI for it.

    Bluntly.

    This is a poor use-case; it doesn't matter what model you use, you'll get a disappointing result.

    These are the domains where using AI coding currently shines:

    1) You're approaching a new well established domain (eg. building an android app in kotlin), and you already know how to build things / apps, but not specifically that exact domain.

    Example: How do I do X but for an android app in kotlin?

    2) You're building out a generic scaffold for a project and need some tedious (but generic) work done.

    Example: https://github.com/smol-ai/developer

    3) You have a standard, but specific question regarding your code, and although related Q/A answers exist, nothing seems to specifically target the issue you're having.

    Example: My nginx configuration is giving me [SPECIFIC ERROR] for [CONFIG FILE]. What's wrong and how can I fix it?

    The domains where it does not work are:

    1) You have some generic code with domain/company/whatever specific edge cases.

    The edge cases, broadly speaking, no matter how well documented, will not be handled well by the model.

    Edge cases are exactly that; edge cases; the common medium of 'how to x' does not cover edge cases; the edge cases will not be covered and the results will require you to review and complete them manually.

    2) You have some specific piece of code you want to refactor 'to solve xxx', but the code is not covered well by tests.

    LLMs struggle to refactor existing code, and the difficulty is proportional to the code length. There are technical reasons for this (mainly randomizing token weights), but tldr; it's basically a crap shot.

    Might work. Might not. If you have no tests who knows? You have to manually verify both the new functionality and the old functionality, but maybe it helps a bit, at scale, for trivial problems.

    3) You're doing some obscure BS or using a new library / new version of the library.

    The LLM will have no context for this, and will generate rubbish / old deprecated content.

    ...

    So. Concrete advice:

    1) sigh~

    > a friend of mine came and suggested that I use Retrieval-Augmented Generation (RAG), I have yet to try it, with a setup Langchain + Ollama.

    Ignore this advice. RAG and langchain are not the solutions you are looking for.

    2) Use a normal coding assistant like copilot.

    This is the most effective way to use AI right now.

    There are some frameworks that let you use open source models if you don't want to use openAI.

    3) Do not attempt to bulk generate code.

    AI coding isn't at that level. Right now, the tooling is primitive, and large scale coherent code generation is... not impossible, but it is difficult (see below).

    You will be more effective using an existing proven path that uses 'copilot' style helpers.

    However...

    ...if you do want to pursue code generation, here's a broad blueprint to follow:

    - decompose your task into steps

    - decompose you steps in functions

    - generate or write tests and function definitions

    - generate an api specification (eg. .d.ts file) for your function definitions

    - for each function definition, generate the code for the function passing the api specification in as the context. eg. "Given functions x, y, z with the specs... ; generate an implementation of q that does ...".

    - repeated generate multiple outputs for the above until you get one that passes the tests you wrote.

    This approach broadly scales to reasonably complex problems, so long as you partition your problem into module sized chunks.

    I personally like to put something like "you're building a library/package to do xxx" or "as a one file header" as a top level in the prompt, as it seems to link into the 'this should be isolated and a package' style of output.

  • Did I accidentally automate myself out of the job?
    1 project | /r/OpenAI | 1 Dec 2023
    check out smol-developer (https://github.com/smol-ai/developer)
  • Ask HN: How can ChatGPT be effectively utilized in the work
    4 projects | news.ycombinator.com | 17 Oct 2023
    4. https://github.com/smol-ai/developer

    How can ChatGPT be effectively utilized for reading library source code, resolving coding issues, and serving as a dedicated coding assistant tailored for a specific programming language?

  • Bootstrap a React app with smol developer
    1 project | dev.to | 26 Sep 2023
    The smol developer AI tool was built by a developer called Swyx using ChatGPT. This library is designed to act like a personal, junior developer, performing a huge array of simple, routine tasks as well as some sophisticated tasks. By using a spec that you provide in a prompt, you can even use smol developer to pair program with an AI tool!
  • Outsmarting AI šŸ¤–šŸ§  The hack for generating fully-functional web apps
    5 projects | dev.to | 22 Aug 2023
    And this is where most of these tools fall short, with tools like Smol-Developer creating decent client and server code that work great on their own, but unfortunately donā€™t work together!
  • Ask HN: Which GPT-powered coding assistants exist?
    4 projects | news.ycombinator.com | 6 Aug 2023
    1) Show HN: Bloop ā€“ Answer questions about your code with an LLM agent (github.com/bloopai)

    https://news.ycombinator.com/item?id=36260961

    2) https://github.com/paul-gauthier/aider

    3) Show HN: GPT Repo Loader ā€“ load entire code repos into GPT prompts (github.com/mpoon)

    https://news.ycombinator.com/item?id=35191303

    4) https://github.com/smol-ai/developer

    5) codium

    6) copilot

    7) using gpt in the playground / chatgpt

    8) jam.dev/jamgpt

    9) magic.dev

    10) https://github.com/kristoferlund/duet-gpt

    Which ones am I missing?

  • How to add an AI Code Copilot to your product using GPT4
    4 projects | news.ycombinator.com | 4 Aug 2023
    I had this same idea and started working on something for this purpose called j-dev [0]. It started as a fork off smol-dev [1] which basically gets GPT to write your entire project from scratch. And then you would have to iterate the prompt to nuke everything and re-write everything, filling in increasingly complicated statements like "oh except in this function make sure you return a promise"

    j-dev is basically a CLI where it gives a prompt similar to the one in the parent article. You start with a prompt and the CLI fills in the directory contents (excluding gitignore). Then it requests access to the files it thinks it wants. And then it can edit, delete or add files or ask for followup based on your response.

    It also addresses the problem that a lot of these tools eat up way too many tokens so a single prompt to something like smol-dev would eat up a few dollars on every iterations.

    It's still very much a work in progress and i'll prob do a show hn next week but I would love some feedback

    [0] https://github.com/breeko/j-dev

    [1] https://github.com/smol-ai/developer

  • Smol AI šŸ£ vs Wasp AI šŸ- Which is the Better AI Junior Developer?
    2 projects | dev.to | 1 Aug 2023
    Smol AIā€™s ā€œSmol-Developerā€ gained a lot of notoriety very quickly by being one of the first such tools on the scene. It is a simple set of python scripts that allow a user to build prototype apps using natural language in an iterative approach.
  • Ai create entire project
    3 projects | /r/ChatGPTPro | 10 Jul 2023
  • In five years, there will be no programmers left, believes Stability AI CEO
    4 projects | /r/singularity | 3 Jul 2023

autodoc

Posts with mentions or reviews of autodoc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-23.
  • March 2023
    20 projects | /r/dailyainews | 23 May 2023
    22-Mar-2023 Adobe unveils creative generative AI model, Firefly, to aid content creation Google has begun rolling out early access to its Bard chatbot in the US and UK Data Breach At ChatGPT? Users Report Seeing Unknown Conversations On Their Screens GPT-4 is available in preview in Azure OpenAI Service AI-powered coding assistance REPL that pairs GPT-4 (https://github.com/jiggy-ai/pair) Open source alternative to ChatGPT (https://github.com/nichtdax/awesome-totally-open-chatgpt) Run 100B+ language models at home, BitTorrentā€‘style (https://petals.ml/) Find the most relevant piece of code context. Hover and highlight blocks of code, the tool will point you to the most relevant pieces of information on git, messaging, and ticketing systems. Finally, it provide a summary with the power of GPT.(https://www.watermelontools.com/) Why AI Won't Replace Software Engineers (https://softwarecomplexity.com/why-ai-wont-replace-software-engineers) 23-Mar-2023 'The iPhone Moment of AI' Nvidia to Rent Out Supercomputers Behind ChatGPT to Businesses for $37,000 a Month Bill Gates calls AI revolutionary, says it can reduce some of the worldā€™s worst inequities AI pics of Donald Trump's arrest by 'cop' Joe Biden go viral. Will we no longer be able to tell whatā€™s real vs whatā€™s fake?ā€ - Eluna AI New research shows we can only accurately identify AI writers about 50% of the time. (https://hai.stanford.edu/news/was-written-human-or-ai-tsu) FauxPilot - an open-source GitHub Copilot server(https://github.com/fauxpilot/fauxpilot) Flower , an open-source framework for training AI on distributed data. We move the model to the data instead of moving the data to the model. (https://flower.dev/) OpenAI-Integrated Microsoft Bing Outperforms Google in Page Visits (https://www.gadgets360.com/internet/news/openai-integrated-microsoft-bing-outperforms-google-page-visits-growth-3885069) GitHub Copilot X: GitHub Copilot is evolving to bring chat and voice interfaces, support pull requests, answer questions on docs, and adopt OpenAIā€™s GPT-4 for a more personalized developer experience. (https://github.blog/2023-03-22-github-copilot-x-the-ai-powered-developer-experience/) Moonshine ā€“ open-source, pretrained ML models for satellite (https://github.com/moonshinelabs-ai/moonshine) Mozilla.ai: A startup ā€” and a community ā€” that will build a trustworthy and independent open-source AI ecosystem. Mozilla.aiā€™s initial focus? Tools that make generative AI safer and more transparent. And, people-centric recommendation systems that donā€™t misinform or undermine our well-being. (https://blog.mozilla.org/en/mozilla/introducing-mozilla-ai-investing-in-trustworthy-ai/) OpenAIā€™s policies hinder reproducible research on language models (https://aisnakeoil.substack.com/p/openais-policies-hinder-reproducible) 24-Mar-2023 Adobe has added AI features to Photoshop and Illustrator, while Nvidia has unveiled ā€˜Picassoā€™ AI image generation service. ChatGPT-owner OpenAI fixes 'significant issue' exposing user chat titles.A bug in an open-source library caused ChatGPT to leak user conversation titles. Graphic design platform Canva introduces new generative AI tools Gmail for Android, Google Messages to Soon Get Features for AI-Generated Texts Apple: Transformer architecture optimized for Apple Silicon (https://github.com/apple/ml-ane-transformers) ChatGPT plugins, join waitlist (https://openai.com/blog/chatgpt-plugins) Microsoft's paper on OpenAI's GPT-4 had hidden information (https://twitter.com/DV2559106965076/status/1638769434763608064) how to use LoRA to fine-tune LLaMA using Alpaca training data (https://replicate.com/blog/fine-tune-alpaca-with-lora) Helicone: one-line integration logs the prompts, completions, latencies, and costs of your OpenAI requests (https://github.com/Helicone/helicone) RWKV is an RNN with Transformer-level LLM performance, which can also be directly trained like a GPT transformer (parallelizable). (https://github.com/BlinkDL/RWKV-LM) open-source retrieval plugin The open-source retrieval plugin enables ChatGPT to access personal or organizational information sources (with permission). It allows users to obtain the most relevant document snippets from their data sources, such as files, notes, emails or public documentation, by asking questions or expressing needs in natural language. Security considerations The retrieval plugin allows ChatGPT to search a vector database of content, and add the best results into the ChatGPT session. This means it doesnā€™t have any external effects, and the main risk is data authorization and privacy. Developers should only add content into their retrieval plugin that they are authorized to use and can share in usersā€™ ChatGPT sessions. https://github.com/openai/chatgpt-retrieval-plugin 27-Mar-2023 Autodoc: Toolkit for auto-generating codebase documentation using LLMs (https://github.com/context-labs/autodoc) March 20 ChatGPT outage: Hereā€™s what happened (https://openai.com/blog/march-20-chatgpt-outage) Facebook is going after LLaMA repos with DMCA's (https://twitter.com/theshawwn/status/1638925249709240322) ChatGPT + Wolfram is INSANE! (https://old.reddit.com/r/ChatGPT/comments/1205omc/chatgpt\_wolfram\_is\_insane/) Reproducing the Stanford Alpaca results using low-rank adaptation (LoRA) (https://github.com/chris-alexiuk/alpaca-lora) GOAT, a decentralized way to publish and download AI models.Powered by BitTorrent and Bitcoin.(https://ipfs.io/ipfs/QmYyucgBQVfs9JXZ2MtmkGPAhgUjNgyGE6rcJT1KybQHhp/index.html) Dolly from databricks (https://www.databricks.com/blog/2023/03/24/hello-dolly-democratizing-magic-chatgpt-open-models.html) AI powered Developer Tools 2.0. https://www.sequoiacap.com/article/ai-powered-developer-tools/ Turn your designs into production-ready front-end code for mobile apps and the web (https://www.locofy.ai/) Using ChatGPT Plugins with LLaMA (https://blog.lastmileai.dev/using-openais-retrieval-plugin-with-llama-d2e0b6732f14) 28-Mar-2023 Bing AI now allows 20 prompts per session and can make images for you ChatGPT Outperforms Crowd-Workers for Text-Annotation Tasks (https://arxiv.org/abs/2303.15056) ChatGPT or Grammarly? Evaluating ChatGPT on Grammatical Error Correction Benchmark (https://arxiv.org/abs/2303.13648) AI-controlled Linux Containers (https://github.com/fafrd/aquarium) Microsoft reportedly orders AI chatbot rivals to stop using Bingā€™s search data (https://www.theverge.com/2023/3/25/23656336/microsoft-chatbot-rivals-stop-using-bing-search-index) 29-Mar-2023 Text2Video-Zero Code and Weights Released by Picsart AI Research (12G VRAM).(https://github.com/Picsart-AI-Research/Text2Video-Zero) Pause Giant AI Experiments: An Open Letter. Huggingface's SF Open-Source AI Meetup officially has 2000 people registered. Cerebras open sources seven GPT-3 models from 111 million to 13 billion parameters. Trained using the Chinchilla formula, these models set new benchmarks for accuracy and compute efficiency.(https://www.cerebras.net/blog/cerebras-gpt-a-family-of-open-compute-efficient-large-language-models/) Independent implementation of LLaMA that is fully open source under the Apache 2.0 license (https://github.com/Lightning-AI/lit-llama) Bootstrap knowledge of LLMs (https://gist.github.com/rain-1/eebd5e5eb2784feecf450324e3341c8d) OPENFLAMINGO: AN OPEN-SOURCE FRAMEWORK FOR TRAINING VISION-LANGUAGE MODELS WITH IN-CONTEXT LEARNING (https://laion.ai/blog/open-flamingo/) gpt4all: a chatbot trained on a massive collection of clean assistant data including code, stories and dialogue (https://github.com/nomic-ai/gpt4all) 30-Mar-2022 Microsoft Security Copilot is a new GPT-4 AI assistant for cybersecurity (https://www.theverge.com/2023/3/28/23659711/microsoft-security-copilot-gpt-4-ai-tool-features) UK details ā€˜pro-innovationā€™ approach to AI regulation (https://www.artificialintelligence-news.com/2023/03/29/uk-details-pro-innovation-approach-ai-regulation/) Employees Are Feeding Sensitive Biz Data to ChatGPT, Raising Security Fears (https://www.darkreading.com/risk/employees-feeding-sensitive-business-data-chatgpt-raising-security-fears) In the Age of AI, Don't Let Your Skills Atrophy (https://www.cyberdemon.org/2023/03/29/age-of-ai-skill-atrophy.html) Now ChatGPT is being (mis)used to do #PeerReview (https://mstdn.science/@ukrio/110100752908161183) Bing Chat now has Ads! (https://twitter.com/debarghya\_das/status/1640892791923572737) Cerebras-GPT vs LLaMA AI Model Comparison (https://www.lunasec.io/docs/blog/cerebras-gpt-vs-llama-ai-model-comparison/) Arthur C. Clarke about the future of AI. ā€” 21 September 1964 (https://twitter.com/Rainmaker1973/status/1640016339011076097) ColossalChat: An Open-Source Solution for Cloning ChatGPT With a Complete RLHF Pipeline (https://medium.com/@yangyou\_berkeley/colossalchat-an-open-source-solution-for-cloning-chatgpt-with-a-complete-rlhf-pipeline-5edf08fb538b) Create and Embed Custom AI Assistants with Libraria (https://libraria.dev/) 31-Mar-2023 Deranged New AI Has No Guardrails Whatsoever, Proudly Praises Hitler (https://futurism.com/deranged-ai-no-guardrails) Midjourney Kills Free AI Image Generator Access After Explosion of Deep Fakes (https://decrypt.co/124972/midjourney-free-ai-image-generation-stopped-over-deepfakes) Judge asks ChatGPT to decide bail in murder trial (https://nypost.com/2023/03/29/judge-asks-chatgpt-for-decision-in-murder-trial/) Should you use OpenAI's embeddings? Probably not, and here's why. (https://iamnotarobot.substack.com/p/should-you-use-openais-embeddings) Visual Studio Code and GitHub Copilot (https://code.visualstudio.com/blogs/2023/03/30/vscode-copilot) Llama Hub (https://llamahub.ai/) Finetuning LLMs on a Single GPU Using Gradient Accumulation (https://lightning.ai/pages/blog/gradient-accumulation/) Open source ETL framework for retrieval augmented generation (RAG). Sync data from your SaaS tools to a vector store, where they can be easily queried by GPT apps (https://github.com/ai-sidekick/sidekick) HALTT4LLM - Hallucination Trivia Test for Large Language Models (https://github.com/manyoso/haltt4llm) Vicuna: An Open-Source Chatbot Impressing GPT-4 with 90%* ChatGPT Quality (https://vicuna.lmsys.org/) Iterate.ai Brings Generative AI Capabilities to Interplay, the Low-Code Platform Accelerating Customersā€™ Digital Innovation (https://www.indianweb2.com/2023/03/iterateai-brings-generative-ai.html) RFdiffusion is an open source method for structure generation, with or without conditional information (a motif, target etc). (https://github.com/RosettaCommons/RFdiffusion) Google denies training Bard on ChatGPT chats from ShareGPT
  • Is there such a thing as local Llamas integrated into VSCode?
    12 projects | /r/LocalLLaMA | 20 May 2023
    Autodoc toolkit that auto-generates codebase documentation using GPT-4 or Alpaca, and can be installed in a git repository in about 5 minutes.
  • 27-Mar-2023
    3 projects | /r/dailyainews | 11 Apr 2023
    Autodoc: Toolkit for auto-generating codebase documentation using LLMs (https://github.com/context-labs/autodoc)
  • Autodoc: A toolkit for auto-generating codebase documentation using LLMs, like GPT-4
    1 project | /r/programming | 25 Mar 2023
  • Autodoc: Toolkit for auto-generating codebase documentation using LLMs
    1 project | /r/patient_hackernews | 24 Mar 2023
    1 project | /r/hackernews | 24 Mar 2023
    1 project | /r/hypeurls | 24 Mar 2023
  • Automatically document an entire codebase using LLMs
    4 projects | news.ycombinator.com | 24 Mar 2023

What are some alternatives?

When comparing developer and autodoc you can also consider the following projects:

gpt-engineer - Specify what you want it to build, the AI asks for clarification, and then builds it.

refact - WebUI for Fine-Tuning and Self-hosting of Open-Source Large Language Models for Coding

sweep - Sweep: open-source AI-powered Software Developer for small features and bug fixes.

locai - Connect to Kobold API through VS Code

aider - aider is AI pair programming in your terminal

haltt4llm - This project is an attempt to create a common metric to test LLM's for progress in eliminating hallucinations which is the most serious current problem in widespread adoption of LLM's for many real purposes.

starcoder.cpp - C++ implementation for šŸ’«StarCoder

gpt-pilot - The first real AI developer

dolly - Databricksā€™ Dolly, a large language model trained on the Databricks Machine Learning Platform

MetaGPT - šŸŒŸ The Multi-Agent Framework: First AI Software Company, Towards Natural Language Programming

gpt4all - gpt4all: run open-source LLMs anywhere