# Gpt 3

Published articles for Gpt 3.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Evaluating gpt-4o-mini vs. gpt-3.5-turbo for RAG applications

DevFeed: [Evaluating gpt-4o-mini vs. gpt-3.5-turbo for RAG applications](<https://devfeed.tech/articles/evaluating-gpt-4o-mini-vs-gpt-3-5-turbo-for-rag-applications-21728.md>)

Original publisher: [Read original article](<http://blog.pamelafox.org/2025/03/gpt-4o-mini-vs-gpt-35-turbo-for-rag.html>)

Author: Pamela Fox (noreply@blogger.com)

Published: 2025-03-06T08:22:00Z

Content type: comparison

Language: en

Sources: [Pamela Fox](<https://devfeed.tech/sources/pamela-fox.md>)

Topics: [Retrieval Augmented Generation (RAG)](<https://devfeed.tech/topics/retrieval-augmented-generation-rag.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Azure](<https://devfeed.tech/topics/azure.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [azure](<https://devfeed.tech/tags/azure.md>), [cost](<https://devfeed.tech/tags/cost.md>), [evaluation](<https://devfeed.tech/tags/evaluation.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [latency](<https://devfeed.tech/tags/latency.md>), [openai](<https://devfeed.tech/tags/openai.md>), [rag](<https://devfeed.tech/tags/rag.md>), [vs](<https://devfeed.tech/tags/vs.md>)

### AI overview

The article evaluates gpt-4o-mini against gpt-35-turbo as the default model for the Azure RAG sample application. Across evaluations using HR documents and the author's blog, gpt-4o-mini had comparable groundedness and relevance, produced longer answers, took more generation time, and had lower overall cost because of its lower per-token pricing.

### Source excerpt

The azure-search-openai-demo repository was first created in March 2023 and is now the most popular RAG sample solution for Azure. Since the world of generative AI changes so rapidly, we've made many upgrades to its underlying packages and technologies over the past two years. But we've never changed the default GPT model used for the RAG flow: gpt-35-turbo. Why, when there are new models that are cheaper and reportedly better, such as gpt-4o-mini? Well, changing the model is one of the most significant changes you can make to impact RAG answer quality, and I did not want to make the change without thorough evaluation. Good news! I have now run several bulk evaluations on different RAG knowledge bases, and I feel fairly confident that a switch to gpt-4o-mini is a positive overall change, with some caveats. In my evaluations, gpt-4o-mini generates answers with comparable groundedness and relevance. The time-per-token is slightly less, but the answers are 50% longer on average, thus they take 45% more time for generation. The additional answer length often provides additional details based off the context, especially for questions where the answer is a list or a sequential process. The gpt-4o-mini per-token pricing is about 1/3 of gpt-35-turbo pricing, which works out to a lower overall cost. Let's dig into the results more in this post. Evaluation results I ran bulk evaluations on two knowledge bases, starting with the sample data that we include in the repository, a bunch of invented HR documents for a fictitious company. Then, since I always like to evaluate knowledge that I know deeply, I also ran evaluations on a search index composed entirely of my own blog posts from this very blog. Here are the results for the HR documents, for 50 Q/A pairs: metric stat gpt-35-turbo gpt-4o-mini gpt_groundedness pass_rate 0.98 0.98 mean_rating 4.94 4.9 gpt_relevance pass_rate 0.98 0.96 mean_rating 4.42 4.54 answer_length mean 667.7 934.36 latency mean 2.96 3.8 citations_matched

## SudoLang: A Pseudocode Language for Prompting LLMs

DevFeed: [SudoLang: A Pseudocode Language for Prompting LLMs](<https://devfeed.tech/articles/sudolang-a-powerful-pseudocode-programming-language-for-llms-20715.md>)

Original publisher: [Read original article](<https://medium.com/javascript-scene/sudolang-a-powerful-pseudocode-programming-language-for-llms-d64d42aa719b?source=rss----c0aeac5284ad---4>)

Author: Eric Elliott

Published: 2023-04-01T02:15:41Z

Content type: article

Language: en

Sources: [Eric Elliot](<https://devfeed.tech/sources/eric-elliot.md>)

Topics: [Large Language Model](<https://devfeed.tech/topics/llm.md>), [Programming](<https://devfeed.tech/topics/programming.md>), [GitHub Copilot](<https://devfeed.tech/topics/github-copilot.md>), [GitHub](<https://devfeed.tech/topics/github.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [chatgpt](<https://devfeed.tech/tags/chatgpt.md>), [coding](<https://devfeed.tech/tags/coding.md>), [context](<https://devfeed.tech/tags/context.md>), [copilot](<https://devfeed.tech/tags/copilot.md>), [developer](<https://devfeed.tech/tags/developer.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [hallucinations](<https://devfeed.tech/tags/hallucinations.md>), [language](<https://devfeed.tech/tags/language.md>), [language-models](<https://devfeed.tech/tags/language-models.md>), [llms](<https://devfeed.tech/tags/llms.md>), [nlp](<https://devfeed.tech/tags/nlp.md>), [programming](<https://devfeed.tech/tags/programming.md>), [programming-language](<https://devfeed.tech/tags/programming-language.md>), [software-development](<https://devfeed.tech/tags/software-development.md>), [sudolang](<https://devfeed.tech/tags/sudolang.md>), [technology](<https://devfeed.tech/tags/technology.md>)

### AI overview

The article introduces SudoLang, a formalized pseudocode language intended to help prompt large language models. It discusses how GPT-4 improved the usefulness of detailed pseudocode instructions while noting that LLM outputs can still contain errors and hallucinations.

### Source excerpt

Pseudocode is a fantastic way to sketch programs using informal, natural language, without worrying about specific syntax. It's like sketching your thoughts before diving into the nitty-gritty of coding. It's useful for brainstorming and communicating ideas with others. I have been using pseudocode to express ideas to Large Language Models (LLMs) since GPT-3 was announced in mid 2020. However, up until GPT-4 was released, it didn't work extremely well. It sometimes worked, but I threw away most completions on GPT-3 and GPT-3.5. Even so, LLMs were already extremely useful in that state. In a 2022 study, GitHub found that Copilot shaved 55% of the time off a project task assigned to 95 people: 45 using Copilot, and the rest without. In other words, even before LLM pseudocode languages like SudoLang, LLMs were already making a huge impact on developer productivity. But GPT-4 raises the bar. Not a little bit, but a lot. First, let's address the obvious. GPT-4 is: 40% less likely to deliver an incorrect response. (But still prone to errors and hallucinations. Be sure to check its output!) Multi-modal and can interact with both text and images. (I haven't had the chance to test this, yet.) Sweeping intelligence and training improvements. (This may be an understatement. The improvement is astonishing.) Much longer context available. (It can help you build much larger programs!) GPT-4 scores significantly better on a broad range of human level knowledge and intelligence assessment tests, including the Bar, LSAT, SAT, GRE, and AP placement tests. (Hot tip: GPT-4 is still not a lawyer even if it can pass the Bar. It will still sometimes hallucinate facts that aren't true. Please don't let it get you into legal trouble!) Source: GPT-4 Technical Report The really interesting upshot of all this is that GPT-4 now has the ability to follow detailed, step by step instructions, even through complex abstractions and long chains of function compositions. I've been playing with a lot o

## Supabase Clippy: ChatGPT for Supabase Docs

DevFeed: [Supabase Clippy: ChatGPT for Supabase Docs](<https://devfeed.tech/articles/supabase-clippy-chatgpt-for-supabase-docs-338.md>)

Original publisher: [Read original article](<https://supabase.com/blog/chatgpt-supabase-docs>)

Author: Paul Copplestone

Published: 2023-02-07T07:00:00Z

Content type: tutorial

Language: en

Sources: [Supabase Blog](<https://devfeed.tech/sources/supabase-blog.md>)

Topics: [AI Chat](<https://devfeed.tech/topics/ai-chat.md>)

Tags: [chatgpt](<https://devfeed.tech/tags/chatgpt.md>), [developer-experience](<https://devfeed.tech/tags/developer-experience.md>), [docs](<https://devfeed.tech/tags/docs.md>), [embeddings](<https://devfeed.tech/tags/embeddings.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [knowledge-base](<https://devfeed.tech/tags/knowledge-base.md>), [openai](<https://devfeed.tech/tags/openai.md>), [postgres](<https://devfeed.tech/tags/postgres.md>), [search](<https://devfeed.tech/tags/search.md>), [streaming](<https://devfeed.tech/tags/streaming.md>)

### AI overview

Supabase introduces an MVP ChatGPT-style interface for its documentation. It retrieves relevant documentation sections using OpenAI embeddings stored in Postgres with pgvector, then supplies them as context for GPT-3 responses.

### Source excerpt

Creating a ChatGPT interface for the Supabase documentation.

## GPT-3's improved capabilities and implications for application security

DevFeed: [GPT-3's improved capabilities and implications for application security](<https://devfeed.tech/articles/gpt-3-36813.md>)

Original publisher: [Read original article](<https://shostack.org/blog/gpt-3/>)

Author: Adam

Published: 2022-12-09T00:00:00Z

Content type: opinion

Language: en

Sources: [Shostack & Friends Blog](<https://devfeed.tech/sources/shostack-friends-blog.md>)

Topics: [OpenAI](<https://devfeed.tech/topics/openai.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Language models](<https://devfeed.tech/topics/language-models.md>), [Application Security](<https://devfeed.tech/topics/application-security.md>), [prompt](<https://devfeed.tech/topics/prompt.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [application-security](<https://devfeed.tech/tags/application-security.md>), [chatgpt](<https://devfeed.tech/tags/chatgpt.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [language-models](<https://devfeed.tech/tags/language-models.md>), [openai](<https://devfeed.tech/tags/openai.md>), [prompt](<https://devfeed.tech/tags/prompt.md>)

### AI overview

The author reflects on GPT-3's marked improvement, its ability to produce reasonably convincing text, and the implications for application security and public information.

### Source excerpt

The OpenAI chatbot is shockingly improved -- its capabilities deserve attention.

## GPT-3

DevFeed: [GPT-3](<https://devfeed.tech/articles/gpt-3-36812.md>)

Original publisher: [Read original article](<https://shostack.org/blog/gpt-3-threat-modeling/>)

Author: Adam

Published: 2022-12-09T00:00:00Z

Content type: article

Language: en

Sources: [Shostack & Friends Blog](<https://devfeed.tech/sources/shostack-friends-blog.md>)

Topics: [ChatGPT](<https://devfeed.tech/topics/chatgpt.md>), [Library](<https://devfeed.tech/topics/library.md>), [spoofing](<https://devfeed.tech/topics/spoofing.md>), [Back end](<https://devfeed.tech/topics/backend.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>)

Tags: [backend](<https://devfeed.tech/tags/backend.md>), [chatgpt](<https://devfeed.tech/tags/chatgpt.md>), [client](<https://devfeed.tech/tags/client.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [libraries](<https://devfeed.tech/tags/libraries.md>), [library](<https://devfeed.tech/tags/library.md>), [service](<https://devfeed.tech/tags/service.md>), [spoofing](<https://devfeed.tech/tags/spoofing.md>)

### AI overview

The article reports that GPT-3 was used to generate sample STRIDE threat libraries for backend-to-backend services in Kubernetes and client-side threats. It notes that the output may be imperfect and requires human judgment.

### Source excerpt

Text captured from GPT-3

## AI and poetry meet Trino

DevFeed: [AI and poetry meet Trino](<https://devfeed.tech/articles/ai-and-poetry-meet-trino-8699.md>)

Original publisher: [Read original article](<https://trino.io/blog/2022/12/06/poetry-ai.html>)

Author: Martin Traverso, Marcos Traverso

Published: 2022-12-06T00:00:00Z

Content type: opinion

Language: en

Sources: [Trino Blog](<https://devfeed.tech/sources/trino-blog.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Poetry](<https://devfeed.tech/topics/poetry.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [data](<https://devfeed.tech/topics/data.md>), [Code](<https://devfeed.tech/topics/code.md>), [real-time](<https://devfeed.tech/topics/real-time.md>), [systems](<https://devfeed.tech/topics/systems.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [blog](<https://devfeed.tech/tags/blog.md>), [blog-post](<https://devfeed.tech/tags/blog-post.md>), [code](<https://devfeed.tech/tags/code.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [openai](<https://devfeed.tech/tags/openai.md>), [poetry](<https://devfeed.tech/tags/poetry.md>), [prompt](<https://devfeed.tech/tags/prompt.md>)

### AI overview

The article describes an experiment using GPT-3 to generate poetry about Trino. It presents two generated poems that highlight Trino's data integration, SQL, real-time analytics, distributed-system, scalability, and data-source capabilities, then invites readers to try the experiment themselves.

### Source excerpt

Sometimes when working in the depth of the query engine core, the planner, the optimizer, or some other tricky problem or code, you run out of steam and need a distraction. Your brain will quietly work on the problem in the background while you get to read or do something interesting. During one break we found out more about GPT-3 and the recent improvements on the OpenAI project. So we had to try.

## Our product got free advertising from AI

DevFeed: [Our product got free advertising from AI](<https://devfeed.tech/articles/our-product-got-free-advertising-from-ai-6018.md>)

Original publisher: [Read original article](<https://turso.tech/blog/our-product-got-free-advertising-from-ai-b4f5b7ac645f>)

Author: Glauber Costa

Published: 2022-10-18T00:00:00Z

Content type: article

Language: en

Sources: [Turso Blog](<https://devfeed.tech/sources/turso-blog.md>)

Topics: [Turso](<https://devfeed.tech/topics/turso.md>), [SQLite](<https://devfeed.tech/topics/sqlite.md>), [libSQL](<https://devfeed.tech/topics/libsql.md>)

Tags: [chiselstrike](<https://devfeed.tech/tags/chiselstrike.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [libsql](<https://devfeed.tech/tags/libsql.md>), [product](<https://devfeed.tech/tags/product.md>), [serendipity](<https://devfeed.tech/tags/serendipity.md>), [sqlite](<https://devfeed.tech/tags/sqlite.md>), [technology](<https://devfeed.tech/tags/technology.md>), [turso](<https://devfeed.tech/tags/turso.md>)

### AI overview

The article discusses Turso's product receiving free advertising from AI. The supplied text notes that the post references an older version of Turso, describes Turso as a ground-up rewrite of SQLite, and explains Turso Cloud's database access, synchronization, offline support, and file-based architecture.

### Source excerpt

An entrepreneur's unlikely journey from environmental concerns through artificial intelligence leads him to the ChiselStrike BaaS.

## Transformers for software engineers

DevFeed: [Transformers for software engineers](<https://devfeed.tech/articles/transformers-for-software-engineers-21973.md>)

Original publisher: [Read original article](<https://blog.nelhage.com/post/transformers-for-software-engineers/>)

Author: Nelson Elhage

Published: 2022-04-01T20:00:00Z

Content type: tutorial

Language: en

Sources: [Nelson Elhage](<https://devfeed.tech/sources/nelson-elhage.md>)

Topics: [Transformer architecture](<https://devfeed.tech/topics/transformer-architecture.md>), [Programming](<https://devfeed.tech/topics/programming.md>), [Software Engineering](<https://devfeed.tech/topics/software-engineering.md>), [Reverse Engineering](<https://devfeed.tech/topics/reverse-engineering.md>), [Transformers](<https://devfeed.tech/topics/transformers.md>)

Tags: [anthropic](<https://devfeed.tech/tags/anthropic.md>), [architecture](<https://devfeed.tech/tags/architecture.md>), [codex](<https://devfeed.tech/tags/codex.md>), [deep-learning](<https://devfeed.tech/tags/deep-learning.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [model-architecture](<https://devfeed.tech/tags/model-architecture.md>), [programming](<https://devfeed.tech/tags/programming.md>), [reverse-engineering](<https://devfeed.tech/tags/reverse-engineering.md>), [software-engineering](<https://devfeed.tech/tags/software-engineering.md>), [storm](<https://devfeed.tech/tags/storm.md>), [transformer-architecture](<https://devfeed.tech/tags/transformer-architecture.md>), [transformers](<https://devfeed.tech/tags/transformers.md>)

### AI overview

This tutorial explains Transformer architecture for software engineers, using software engineering and programming perspectives to discuss how GPT-style Transformer models work. It also connects the architecture to interpretability and reverse-engineering efforts.

### Source excerpt

Ever since its introduction in the 2017 paper, Attention is All You Need, the Transformer model architecture has taken the deep-learning world by storm. Initially introduced for machine translation, it has become the tool of choice for a wide range of domains, including text, audio, video, and others. Transformers have also driven most of the massive increases in model scale and capability in the last few years. OpenAI's GPT-3 and Codex models are Transformers, as are DeepMind's Gopher models and many others.

## Автоматическая многоязычная модерация сообщений для миллионов пользователей

DevFeed: [Автоматическая многоязычная модерация сообщений для миллионов пользователей](<https://devfeed.tech/articles/article-23645.md>)

Original publisher: [Read original article](<https://habr.com/ru/companies/badoo/articles/648815/>)

Author: punkerpunker (Badoo)

Published: 2022-02-01T10:50:28Z

Content type: article

Language: ru

Sources: [Badoo EN](<https://devfeed.tech/sources/badoo-en.md>), [Badoo RU](<https://devfeed.tech/sources/badoo-ru.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Natural language processing](<https://devfeed.tech/topics/nlp.md>), [Large Language Model](<https://devfeed.tech/topics/llm.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [badoo](<https://devfeed.tech/tags/badoo.md>), [bert](<https://devfeed.tech/tags/bert.md>), [data-science](<https://devfeed.tech/tags/data-science.md>), [gpt](<https://devfeed.tech/tags/gpt.md>), [gpt-3](<https://devfeed.tech/tags/gpt-3.md>), [natural-language-processing](<https://devfeed.tech/tags/natural-language-processing.md>), [nlp](<https://devfeed.tech/tags/nlp.md>), [tag-055aee430837](<https://devfeed.tech/tags/tag-055aee430837.md>), [tag-13e2af703774](<https://devfeed.tech/tags/tag-13e2af703774.md>), [tag-1cd610c0e518](<https://devfeed.tech/tags/tag-1cd610c0e518.md>), [tag-5cb789e9aaa3](<https://devfeed.tech/tags/tag-5cb789e9aaa3.md>), [tag-9d8cf70dc46c](<https://devfeed.tech/tags/tag-9d8cf70dc46c.md>), [tag-e69b694e3ce2](<https://devfeed.tech/tags/tag-e69b694e3ce2.md>)

### AI overview

The article describes Badoo and Bumble's Rude Message Detector, a machine-learning system for multilingual moderation of rude messages. It discusses the system's architecture, deployment infrastructure, implementation challenges, and results, including the use of transformer-based architectures and large language models such as BERT, GPT-2, and GPT-3.

### Source excerpt

Как мы все знаем, слова обладают силой. Ими можно вдохновить людей, но можно и навредить. Мы в Badoo и Bumble стараемся оградить пользователей от неприятных ситуаций, поэтому внедрили инструмент Rude Message Detector. Это многоязычный детектор грубых высказываний, работающий на основе машинного обучения. В этой статье мы расскажем о технических особенностях нашего решения, сложностях, с которыми столкнулись в ходе реализации проекта, и его результатах. Читать далее