Open-LaunchOpen-Launch

Categories

Browse Categories

APIs & Integrations276 projectsAR/VR34 projectsArtificial Intelligence1659 projectsBlockchain & Crypto71 projectsBusiness Analytics191 projectsCMS & No-Code102 projectsCross-Platform Development33 projectsData Science & Analytics101 projectsDatabases94 projectsDesign Tools556 projectsDevOps & Cloud51 projectsDeveloper Tools458 projectsDirectory224 projectsE-commerce189 projectsEducation Tech261 projectsFinance & FinTech166 projectsGame Development89 projectsGaming Tech122 projectsGraphics & Illustration138 projectsGreen Tech10 projectsHardware16 projectsHealth Tech130 projectsInternet of Things (IoT)34 projectsLaunch Platform82 projectsMachine Learning40 projectsMarketing Tools637 projectsMobile Development76 projectsNatural Language Processing31 projectsOnline Community146 projectsOpen Source111 projectsPlatforms260 projectsProductivity1155 projectsPrototyping22 projectsRobotics5 projectsSaaS1490 projectsSales Tools152 projectsSecurity76 projectsServerless15 projectsTesting & QA28 projectsUI/UX102 projectsWearables8 projectsWeb Development319 projects

Quick Access

Trending NowBest of Month

Streak Challenge

0

days streak

šŸš€ Why build streaks?

  • • Products from high-streak users get featured placement
  • • Automatic promotion on the main page
  • • Priority visibility for all submissions
  • • Exclusive community badges

šŸ”„ Active users = More visibility = More success!

Sign in to start earning rewards
logoOpen-Launch

Ā© 2026 Open-Launch. All rights reserved.

Open source project by Simon

Discover

  • Trending
  • Categories
  • Submit Project
  • Alternatives

Resources

  • Pricing
  • Sponsors
  • Blog

Legal

  • Terms of Service
  • Privacy Policy
  • Attribution Badges

Connect

  • GitHub
  • Twitter / X

Free Tools

Bet Calculator

Earned Badges

Featured on Startup Fame

Developer Tools

ace.me logo

1. ace.me

Your new website, email address & cloud storage. Simple. Fast. Secure.

Developer ToolsWeb Development
0
104
Sitemap Generator logo

2. Sitemap Generator

Sitemap Generator is an essential SEO tool designed to create clean, structured XML sitemaps for your website. By generating an up-to-date sitemap, this tool helps search engines efficiently crawl and index all important pages, including posts, categories, images, and other URLs.Whether you manage a small website or a large-scale platform, a Sitemap Generator ensures that search engines understand your site structure clearly. This improves indexing speed, enhances SEO performance, and reduces the chances of important pages being missed. It is simple to use, time-saving, and ideal for webmasters, developers, and SEO professionals who want better search engine visibility.

Developer ToolsOpen SourceServerless
0
94
FileConvertLab logo

3. FileConvertLab

FileConvertLab is an online file conversion platform supporting PDF, Office documents, images, and OCR processing. Convert PDF to Word, Excel, images and vice versa. Extract text from scanned documents with OCR. No software installation required - just upload, convert, and download.

APIs & IntegrationsDeveloper ToolsProductivity
0
54
Free QR Code Generator logo

4. Free QR Code Generator

A 100% free, browser-based QR code generator that creates static QR codes instantly with no sign-up, no subscriptions, no tracking, and no hidden fees.

Developer ToolsSaaSWeb Development
0
103
APIXO - AI api platform logo

5. APIXO - AI api platform

APIXO is an affordable, performance‑first AI API platform that provides access to image, video, audio, and text models through one unified interface, delivering enterprise‑grade stability at a lower cost with unified routing, automatic failover, and transparent usage reporting.

Artificial IntelligenceAPIs & IntegrationsDeveloper Tools
0
104
SIPHON logo

6. SIPHON

Three months.That’s how long many teams spend building telephony infrastructure before writing a single line of actual conversation logic for an AI voice agent.Not because the AI was hard.Because telephony is brutal.Today, we’re open-sourcing the solution so you don’t have to go through the same pain.The Hidden Problem with AI Calling AgentsBuilding an AI calling agent sounds straightforward:Use an LLMAdd speech-to-textAdd text-to-speechConnect it to a phone numberIn reality, that’s where most teams hit a wall.To make real phone calls, you end up dealing with:SIP trunks & PSTN providersLow-latency, bidirectional audioReal-time orchestration of STT, LLM, and TTSCall state, interruptions, transfersScaling, monitoring, recordings, persistenceThe result?Most teams spend weeks or months on infrastructure before they ever touch the conversation itself.We did too. And eventually asked:ā€œWhy is building voice AI still this hard?ā€Introducing SiphonSiphon is an open-source Python framework that handles the telephony complexity for you, so you can focus on building great conversations.Here’s what a complete AI receptionist looks like with Siphon:from siphon.agent import Agent from siphon.plugins import openai, cartesia, deepgram agent = Agent( agent_name="receptionist", llm=openai.LLM(model="gpt-4"), tts=cartesia.TTS(voice="helpful-assistant"), stt=deepgram.STT(model="nova-2"), system_instructions=""" You are a friendly receptionist for Acme Corp. Help callers schedule appointments or route them correctly. """ ) if __name__ == "__main__": agent.start() Run this, and your agent can answer real phone calls via any SIP provider (Twilio, Telnyx, etc.).What Siphon Handles for YoušŸ”Œ SIP & PSTN connectivityWorks with any SIP provider, no FreeSWITCH pain.⚔ Real-time audio pipelineBuilt on LiveKit with streaming audio and sub-500ms voice-to-voice latency.šŸ¤– AI orchestrationPlug-and-play support for LLMs, STT, and TTS.Swap providers with a single line: llm=anthropic.LLM(model="claude-3-5-sonnet")šŸ“ˆ Production-ready by default Auto-scaling, call recordings, transcripts, state handling, and observability.Quick StartInstall:pip install siphon-aiCreate an agent:from siphon.agent import Agent from siphon.plugins import openai, cartesia, deepgram agent = Agent( agent_name="my_first_agent", llm=openai.LLM(), tts=cartesia.TTS(), stt=deepgram.STT(), system_instructions="You are a helpful assistant.", ) agent.start()That’s it.Your agent is live and answering phone calls.(Full setup, outbound calling, and advanced examples are in the docs.)Why We Open-Sourced ItWe could’ve kept Siphon proprietary or turned it into a closed SaaS.But we believe voice AI shouldn’t be locked behind massive infrastructure effort.Siphon is:Apache 2.0 licensedProvider-agnosticFully self-hostableNo vendor lock-inUse it commercially, modify it, or build on top of it.What You Can BuildšŸ“ž Customer support agentsšŸ“… Appointment schedulingšŸ’¼ Sales qualificationšŸ“Š Surveys & feedback collectionšŸ„ Healthcare intake systemsIf it involves phone calls and conversations, Siphon handles the hard parts.Get Involved⭐ GitHub: https://github.com/blackdwarftech/siphonšŸ“– Docs: https://siphon.blackdwarf.in/docsšŸ› Issues & feature requests welcomešŸ¤ PRs encouragedWe’re building Siphon in public and would love community feedback.If you’ve ever thoughtā€œI wish building AI calling agents was simplerā€ā€” give Siphon a try.Built by BLACKDWARFMission: Democratize complex technologies for developers.

Artificial IntelligenceDeveloper ToolsOpen Source
0
112
WhisperCode logo

7. WhisperCode

WhisperCode is a voice-to-AI platform for developers. Capture coding ideas with your voice, and the AI transforms them into structured, developer-friendly prompts ready for ChatGPT, Claude, or Copilot. Features IDE extensions for VS Code, Cursor, and Windsurf with automatic codebase context. Two recording modes: Note Mode for longer ideas and Prompt Mode for quick AI prompts. Privacy-first - your prompts and code never leave your machine.

Artificial IntelligenceDeveloper ToolsProductivity
0
104
ExtraBar logo

8. ExtraBar

ExtraBar lets you create custom macOS actions for the apps you actually use in the menu bar. Add Deep links, Shortcuts, macros & more.

Design ToolsDeveloper ToolsProductivity
0
80
Applyra logo

9. Applyra

Track keywords, discover new opportunities, analyze competitors and get AI-powered ASO suggestions to grow your app's visibility.

Developer ToolsMobile DevelopmentSaaS
0
77
Formbase logo

10. Formbase

Formbase.dev - an open-source form backend you can use from any frontend. Point your forms at a single endpoint and you get stored submissions, file uploads, and notifications without building a custom service for every site.The goal is simple: Formbase is the backend only. You own the UI and validation logic; you can keep everything static, or integrate it into any framework.

Developer Tools
0
80
PreviousPage 11 of 46Next