Open-LaunchOpen-Launch

Categories

Browse Categories

APIs & Integrations286 projectsAR/VR37 projectsArtificial Intelligence1745 projectsBlockchain & Crypto76 projectsBusiness Analytics200 projectsCMS & No-Code107 projectsCross-Platform Development35 projectsData Science & Analytics108 projectsDatabases97 projectsDesign Tools586 projectsDevOps & Cloud56 projectsDeveloper Tools474 projectsDirectory231 projectsE-commerce195 projectsEducation Tech271 projectsFinance & FinTech177 projectsGame Development91 projectsGaming Tech124 projectsGraphics & Illustration141 projectsGreen Tech10 projectsHardware17 projectsHealth Tech136 projectsInternet of Things (IoT)35 projectsLaunch Platform86 projectsMachine Learning43 projectsMarketing Tools661 projectsMobile Development82 projectsNatural Language Processing33 projectsOnline Community151 projectsOpen Source117 projectsPlatforms269 projectsProductivity1196 projectsPrototyping24 projectsRobotics5 projectsSaaS1559 projectsSales Tools153 projectsSecurity79 projectsServerless16 projectsTesting & QA28 projectsUI/UX103 projectsWearables9 projectsWeb Development324 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

Artificial Intelligence

Multiple Angles logo

1. Multiple Angles

Generate stunning 360° views from a single image. Control camera angles with precision using AI. No 3D modeling required.

Artificial IntelligenceSaaS
0
71
TalkToSoul logo

2. TalkToSoul

Discover yourself with free personality tests & style analysis with AI insights.

Artificial IntelligenceHealth TechWeb Development
0
90
OpenClip logo

3. OpenClip

OpenClip uses AI to turn long videos into engaging, social-ready clips with captions, smart edits, and perfect framing for TikTok, Reels, Shorts, X, and LinkedIn.

Artificial Intelligence
0
104
SongMakerAI  logo

4. SongMakerAI

Whether you need a custom song for a project or just want to experiment with AI-generated tunes, SongMakerAI is the leading tool for high-quality music production. Try it for free today and experience the future of sound!

Artificial IntelligenceDesign ToolsEducation Tech
0
92
Tekadio logo

5. Tekadio

Tekadio is the AI platform that gives teachers their time back.Upload a PDF, a website, or an image — and the AI automatically generates a complete test with precise questions, well-designed answers, and multiple difficulty levels.The real breakthrough? Tekadio also grades open-ended answers automatically. It understands synonyms, evaluates answers semantically, and provides individual feedback. Instead of reviewing 250 answers one by one, you only check the 15–20 critical cases where the AI is uncertain. That saves up to 75% of grading time — turning a 3-hour marathon into a focused 45-minute session.With built-in class management, performance heatmaps, and magic-link login for students, everything is in one place. More than 5,000 teachers in 12 countries already use Tekadio — for tests in 10 languages, with automatic grading that actually works and a dashboard that is finally clear and easy to use.

Artificial IntelligenceSaaS
0
82
klink.cloud logo

6. klink.cloud

klink.cloud is a unified AI agent that manages all your customer conversations in one place. It streamlines support across chat, email, and social media, providing instant, consistent responses while learning from interactions to improve over time. Designed for businesses of any size, klink.cloud helps reduce response times, boost customer satisfaction, and free your team to focus on higher-value tasks—all while maintaining a seamless, personalized experience for every customer.

Artificial Intelligence
0
104
Lensmor logo

7. Lensmor

Lensmor is an AI-driven competitive intelligence platform that helps SaaS businesses stay ahead of market shifts.

Artificial IntelligenceSaaS
0
104
APIXO - AI api platform logo

8. 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
Inkdex logo

9. Inkdex

Inkdex is a visual search engine for finding tattoo artists. Upload a reference image or describe what you want, the system searches 175,000+ tattoo images to find artists whose work matches that style.Built because tattoo discovery is broken. Tattoo artists live on Instagram, but Instagram optimizes for engagement, not for helping people find the right artist. Searching by hashtags means knowing the right terminology, the right hashtags, and a lot of scrolling. Inkdex fixes that by making portfolios searchable by visual style vs fixed hashtags.22,000+ artists indexed. Filter by city or browse nationwide. Portfolios auto-sync from Instagram—artists don't upload anything. Search takes under two seconds.

Artificial IntelligencePlatformsSaaS
0
81
SIPHON logo

10. 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
PreviousPage 51 of 175Next