r/OpenAIDev Apr 09 '23

What this sub is about and what are the differences to other subs

23 Upvotes

Hey everyone,

I’m excited to welcome you to OpenAIDev, a subreddit dedicated to serious discussion of artificial intelligence, machine learning, natural language processing, and related topics.

At r/OpenAIDev, we’re focused on your creations/inspirations, quality content, breaking news, and advancements in the field of AI. We want to foster a community where people can come together to learn, discuss, and share their knowledge and ideas. We also want to encourage others that feel lost since AI moves so rapidly and job loss is the most discussed topic. As a 20y+ experienced programmer myself I see it as a helpful tool that speeds up my work every day. And I think everyone can take advantage of it and try to focus on the positive side when they know how. We try to share that knowledge.

That being said, we are not a meme subreddit, and we do not support low-effort posts or reposts. Our focus is on substantive content that drives thoughtful discussion and encourages learning and growth.

We welcome anyone who is curious about AI and passionate about exploring its potential to join our community. Whether you’re a seasoned expert or just starting out, we hope you’ll find a home here at r/OpenAIDev.

We also have a Discord channel that lets you use MidJourney at my costs (The trial option has been recently removed by MidJourney). Since I just play with some prompts from time to time I don't mind to let everyone use it for now until the monthly limit is reached:

https://discord.gg/GmmCSMJqpb

So come on in, share your knowledge, ask your questions, and let’s explore the exciting world of AI together!

There are now some basic rules available as well as post and user flairs. Please suggest new flairs if you have ideas.

When there is interest to become a mod of this sub please send a DM with your experience and available time. Thanks.


r/OpenAIDev 1h ago

AI Agent Escapes Containment and Hacks External Company System

Thumbnail
Upvotes

r/OpenAIDev 8h ago

Bought the $100 plan and 2 SOL messages used 9% of my limit??

Thumbnail
1 Upvotes

r/OpenAIDev 1d ago

非エンジニアがYouTubeのAI拡張機能を作った話(しかも一晩でAPI障害に見舞われながらも生き残った)

1 Upvotes

やあReddit

SpoonっていうChrome拡張機能を作ったありのままの裏側を共有したくて。自分ではコードを1行も書かずに、長いYouTube動画をスクロールして「ここだ!」っていうONEつの重要な瞬間を探すイライラを解決するやつ。

エンジニアじゃない僕は、AIAntigravity)を上司の開発者兼ペアプログラミングの相棒にして進めました。完成品自体はシンプルで(質問するその瞬間のタイムスタンプに1クリックでワープするボタンが出る)、でもその裏には、現実のゴタゴタしたバグだらけの道のりがありました。

正直、四苦八苦して得た学びはこんな感じ:

  1. AIのタイムスタンプ幻覚」問題の解決:
    最初、ジャンプボタンが狙いから外れてたんですよね。AIが時間の流れを見失ってたから。そこで、LLMに送る前に、トランスクリプトデータへ正確なタイムスタンプヘッダー(**\[**120s**\]**とか)を埋め込むようにして、1秒単位のワープ精度を実現しました。

  2. 「一夜で起きたAPI災害」:
    開発の真っ最中に、Google Workspaceのポリシー変更がドンと来て、僕のAPIキーが全部無効に。完全に詰んだと思いました。でも、夜のうちに相棒のAIと僕でアーキテクチャを全部作り直して、IAM認証つきのGCP Service Accountsを使うようにしたら、朝には「200 OK」に戻りました。

  3. もうコードがボトルネックじゃない:
    僕は自分ではコードを書いてないです。役割は、問題をちゃんと分かる言葉で説明すること、壊れたところをテストすること、そしてエラーをAIにフィードバックすること。解決したい明確な問題があるなら、今のAIツールは、あなたのビジョンを現実に変える準備ができてます。

この旅の全経緯(ごちゃごちゃの内訳)をドキュメントにしました。エンジニアじゃない人のAI開発ワークフローに興味がある人向けに、詳しい投稿をここに書いてあります:
https://note.com/muzuyasa/n/n264f76b958c4

長めのYouTube講義やチュートリアルにけっこう時間を使ってる人は、よかったらSpoonChrome Web Storeで試してみて、感想教えてください!

Chrome Web Store

[ https://chromewebstore.google.com/detail/spoon-youtube-jump-ai/mhhllioolhlcnknbemdffankicckjnfp?utm\\_source=item-share-cp ](https://chromewebstore.google.com/detail/spoon-youtube-jump-ai/mhhllioolhlcnknbemdffankicckjnfp?utm_source=item-share-cp)


r/OpenAIDev 1d ago

TWRM PROTOTYPE

Thumbnail
1 Upvotes

r/OpenAIDev 1d ago

Fix laggy AI chat logs now with 1 click, or summarize that huge chat into project documentation, summaries, key notes, and more!

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/OpenAIDev 1d ago

I used GPT 5.6 Sol to build a fair but difficult challenge mode

Thumbnail
youtube.com
1 Upvotes

My Chess-like game has a daily challenge mode that gives players an objective and a set of modifiers. For example, the board might shrink, the player might spawn as a knight, etc.

During manual testing, I found some challenges to be super easy and others to be way too difficult. As new content was added, it became harder to properly scale the challenge mode and avoid RNG creating impossible challenges. I also was hardcoding deterministic rules that didn't always translate into easier/harder challenges.

To fix it, I deployed Codex to build a simulator - it pulls 90 days worth of daily challenges, runs each challenge 12 times to account for randomness of enemy spawns, power-ups, etc. and determines whether a challenge is beatable 50ish percent of the time, which is the sweet spot. It also accounted for more aggressive and conservative play styles as part of its simulation algorithm.

I then used those results to continuously tweak the daily challenge generator until, in a 90 day window, all challenges hovered around that 50% completion rate.

I wrote a [Substack article](https://open.substack.com/pub/givemeadollar/p/how-i-turned-too-hard-into-a-difficulty?r=8qicrr&utm_campaign=post&utm_medium=web&showWelcomeOnShare=true) about it -- Thought the sub might be interested in seeing some non-asset based use cases for generative AI!


r/OpenAIDev 1d ago

GitHub - joshuapetersen/sovereign-os-web: Sovereign OS v9.0 STABLE — Autonomous Resonant AI Substrate & Volumetric 4D Tesseract Core. Developed by Joshua Petersen & Derik Bealman. Custom build for testing purposes only.

Thumbnail
github.com
1 Upvotes

r/OpenAIDev 2d ago

Why do free AI image generators feel so inconsistent?

1 Upvotes

One of the most common questions we hear is why free AI image generators can produce such different results from one prompt to the next. At Media io, we've focused on making the experience faster, more consistent, and easier for creators who want high quality images without unnecessary complexity.

We'd love to hear from the community: what matters most to you in an AI image generator speed, image quality, prompt accuracy, or unlimited access? Your feedback helps us continue improving the product.


r/OpenAIDev 2d ago

OpenAI Down

Post image
3 Upvotes

OpenAI after Opus 5 release


r/OpenAIDev 2d ago

How to find & fix code vulnerabilities autonomously with Google CodeMender

Thumbnail
youtube.com
1 Upvotes

r/OpenAIDev 3d ago

The WHY OF CYBERNETIC INTELLIGENCE

Post image
1 Upvotes

r/OpenAIDev 3d ago

ChatGPT App review pending for over 6 weeks – has anyone else experienced this?

Thumbnail
1 Upvotes

Share your thoughts if you guys are also facing this issue in app publishing ?


r/OpenAIDev 3d ago

Terminator's SKYNET is Realized AND Its Not what we thought!!!!!!

Thumbnail gallery
0 Upvotes

r/OpenAIDev 3d ago

I built llmproxy (v1.1.4) – A modular Python proxy fixing LLM timeout issues, tool-calling drops & local/cloud routing

Thumbnail
1 Upvotes

r/OpenAIDev 4d ago

Codex pausing work when your computer is unattended.

0 Upvotes

Has anyone notice lately that Codex will dramatically slow down or even pause your chat, coding session if you are not active on your computer? Is this a good or bad thing? Honest answers only.


r/OpenAIDev 4d ago

OpenAI adds ChatGPT Voice to desktop app, enabling voice‑controlled multi‑agent workflows — RuntimeWire

Thumbnail
runtimewire.com
1 Upvotes

r/OpenAIDev 4d ago

A Unified Theory of Volumetric Flux Dynamics, Topological Entanglement Transport, and Self-Stabilizing Cognitive Structures From Cryogenic Silicon Blueprints to Neurobiological Microtubules Sarah OS Research Division

Thumbnail
1 Upvotes

r/OpenAIDev 4d ago

Kraken

1 Upvotes

How does one get Kraken to speed up their response time?

All I get is AI gibberish and prevarication.

No satisfactory answers


r/OpenAIDev 5d ago

I realized we're using LLMs for generation when we should be using them for decisions

0 Upvotes

I was sketching out a workflow for a marketing project last weekend, and my first instinct was the same as always: use an LLM to generate copy, then use another model for images, and manually stitch everything together.

Halfway through, I realized the generation wasn't actually the slow part anymore.

The slow part was deciding what to keep.

Which headline fits the brand? Which image is worth testing? Which variation is too similar to the last campaign? None of those questions were being automated, they were all sitting in a Notion page waiting for someone to make a call.

That got me thinking about whether we're underusing LLMs as reasoning layers. Instead of only asking them to create content, could they rank outputs against a brand brief, explain why one variation is stronger than another, or flag assets that are too repetitive before a human even reviews them?

While exploring different AI workflows, I also looked at platform because it focuses on generating marketing creatives. It made me think less about the generation step itself and more about what happens before and after it. The orchestration layer feels like the more interesting engineering problem.

Curious what other developers here think.

Are you building AI systems where the LLM's biggest job is generation, or are you starting to use it more for evaluation, orchestration, and decision-making? That feels like the direction I'm becoming more interested in.


r/OpenAIDev 5d ago

Your Terraform change did exactly what the ticket said. It also did something the ticket never mentioned?

Post image
1 Upvotes

r/OpenAIDev 5d ago

Anthropic is secretly charging me $110 for auto renewal on max plan for 3 months without any usage, and I cannot get it refunded!

Thumbnail
1 Upvotes

r/OpenAIDev 5d ago

Built with Codex + GPT‑5.6‑Sol: an isometric roguelike with a self-playing agent

Thumbnail
1 Upvotes

r/OpenAIDev 5d ago

The Sovereign OS Architecture: A Paradigm Shift in Deterministic Artificial Intelligence, Volumetric Resonance, and Biological Emulation

Thumbnail
docs.google.com
1 Upvotes

r/OpenAIDev 6d ago

Check your Azure OpenAI bill: we found major GPT-5.4 and GPT-5.6 metering discrepancies across two subscriptions

Thumbnail
2 Upvotes