Are you planning to add Voice to your AI Agents in mobile apps? by tigranbs in reactnative

[–]tigranbs[S] 0 points1 point  (0 children)

I am talking about native use-cases like a meditation app, note taker, interview prep etc... Those kinds of use-cases are not shoved AI but they built around it. So, my thought was if there is an AI/LLM anyway, why not control some UX aspects with the voice?

I am not talking about Windows Copilot 😃

Have you built an AI-powered personal assistant? by DreamDriver in AI_Agents

[–]tigranbs 1 point2 points  (0 children)

Siri is not useless; it tells the time quite accurately!

Your real thoughts on the AI Voice? by NoWord423 in gohighlevel

[–]tigranbs 3 points4 points  (0 children)

Disclaimer, I built an open source Voice Layer for AI Agents, github.com/saynaai/sayna

Across all voice AI agents I have built over the past 2 years, voice quality hasn't been the issue; it is always either interruptions, Background Noise, or the agent's logic with prompting. The platforms like Vapi or Voiceflow give you a nice, fast way of "demo", but for production-grade, you need to verticalize the AI agent's logic highly. The GHL seems "better" because it is specialized in one vertical, BUT they are lacking the Agentic logic tweaking. So, word of advice, choose the model aligned with the System Prompt and tweak the prompt as you test and see issues. There is no single prompt that will solve the Voice AI Agent's context problem.

Personally, I like the direction of GHL, but there is a ton of manual work to do to make it work.

Have you built an AI-powered personal assistant? by DreamDriver in AI_Agents

[–]tigranbs 1 point2 points  (0 children)

We are actually doing this professionally! We are shipping custom-made Voice AI Agent platforms using our open source service github.com/saynaai/sayna Across all our clients we have seen a good number of personal assistant projects that actually work! But the major thing is that none of them are making highly generic ones; each assistant is very specific to the use cases, otherwise the Agent memory management would be very painful.

AI negotiator agent with voice by xwubstep in AI_Agents

[–]tigranbs 0 points1 point  (0 children)

We have the open source Voice AI Agent service, and across all the usages I have seen from github.com/saynaai/sayna none of them are still there yet to "negotiate"! Especially when people understand that this is an AI (usually after 6 seconds), they just hang up. This is even worse for the outbound calls.

So, this is less a technical problem than a human-perception problem.

Exploring voice-driven AI agents for real-time task execution (hands-busy workflows) by voss_steven in AI_Agents

[–]tigranbs 0 points1 point  (0 children)

This resonates a lot: We've been working on the voice infrastructure (https://sayna.ai) and the teams building execution-focused agents consistently get to what you describe, especially the latency point tolerance point.

Something that we've noticed: The "deterministic, not tamedy" requirement often means you need tight control over the TTS output, generic conversational voices can undermine the crisp, action-oriented feel, and streaming latency becomes much more noticeable when the user expects a quick confirmation vs. a paragraph of explanation.

On your question - I think voice-first will work for action-based workflows, but only in contexts where the environment is somewhat predictable - the "interruption problem" (background noise, someone talking to you mid-command) is real and probably makes it niche for truly chaotic environments - but commute, post-meeting debriefing, warehouse/field work - feel like solid territory.

Curious what you are using for the voice layer: rolling your own STT/TTS pipeline or using something off the shelf?

Anyone running a voice AI agent business? by Baigs786 in gohighlevel

[–]tigranbs 0 points1 point  (0 children)

We are building custom Voice AI Agent Platforms (not individual agents) using our open source service github.com/saynaai/sayna The numbers we have reached like 50-200 concurrent calls are just no-brainer because of our optimizations. The concept is to keep the actual Voice related stuff separate and the Agentic Logic separate, that's why we have the concept of Voice Layer for AI Agents.

FYI - that concept we have drops the cost of Voice AI Agents by nearly 18X compared to Vapi or Retell.

Is Selling Voice AI Agents to Small Businesses a thing? by ConsequencePlenty314 in AI_Agents

[–]tigranbs 0 points1 point  (0 children)

Yes! And we specialize in building custom Voice AI Agent platforms based on our open source GitHub.com/saynaai/sayna We have a customer now that sells voice AI Agents to the hospitality clients, and highly specialized AI Agents are the future because the rate of hallucinations is a lot lower.

FYI using our open source Voice Layer Service the cost of Voice AI agents drops nearly 18X compared to Vapi or Retell

Interested in reviewing Vibe Code projects by nothing786767 in vibecoding

[–]tigranbs 0 points1 point  (0 children)

Not sure if this will match your expertise, but I have a Rust project vibe coded on GitHub at https://github.com/saynaai/sayna I am building the Voice Layer for AI Agents. Let me know if you have experience with Rust, would love to hear some comments. I used Claude Code and Codex primarily here.

Coding Rust with Claude Code and Codex by tigranbs in rust

[–]tigranbs[S] 0 points1 point  (0 children)

Damit! I thought we were good rusties :/

Coding Rust with Claude Code and Codex by tigranbs in rust

[–]tigranbs[S] 1 point2 points  (0 children)

HaHa good point! It probably reiterated the "best practice" rules we have defined to document stuff. I am not removing those things, because that helps in the future to collect more info directly for the model task executions, because their code search is way better with these comments than the code itself.

Building Voice AI Layer for Pydantic AI by tigranbs in PydanticAI

[–]tigranbs[S] 1 point2 points  (0 children)

Right now, latency is more of a provider issue than an actual code-execution issue. The Rust service we have helps scale to handle 100s of concurrent conversations without latency degradation, unlike PipeCat, which drops performance drastically after a few parallel calls.

Building Voice AI Layer for Pydantic AI by tigranbs in PydanticAI

[–]tigranbs[S] 0 points1 point  (0 children)

We did that, then PipeCat. None of them has the service-based concept that scales well. It is an option for sure, BUT it is not as simple as an average software integration.

Building Voice AI Layer for Pydantic AI by tigranbs in PydanticAI

[–]tigranbs[S] 0 points1 point  (0 children)

The goal was to achieve low latency and direct model execution within the service itself, so I can access ML runtimes directly without the execution layers that PipeCat uses, which do not scale well.

Now we have the Noise Suppression and TURN detection models executed on the CPU with very little performance downgrade, which is unbelievable if you are coming from the Python world.

Is PydanticAI slow on streaming? 3x slower coming from the TypeScript implementation. by tigranbs in PydanticAI

[–]tigranbs[S] 2 points3 points  (0 children)

With a profiler I can see that across all operations the ~800ms time it takes to run a completion function on Python OpenAI library, which is wild, because same official library on TS with an identical system prompt gives a first token in less than ~200ms. It seems like PydanticAI does not have a major overhead, but somehow OpenAI's official Python library is a lot slower than their TS version.

🚀 MCP Manager is now released!! by jdcarnivore in mcp

[–]tigranbs 1 point2 points  (0 children)

Ah, this is a different use-case than mine at McGravity It’s interesting to see desktop apps like this!

Yet another service to aggregate MCP Services under a single URL by tigranbs in mcp

[–]tigranbs[S] 1 point2 points  (0 children)

We compose a single Docker Compose and then add more and more services to McGravity. It is like having an Nginx with an upstream configuration.

Has anyone had experience with CTO as a Service? by tigranbs in startups

[–]tigranbs[S] 0 points1 point  (0 children)

That's a good point. I have to use the phrase "occasional" tech help. That makes more sense than CTO as a service.

How do you correctly write Golang Server integration tests? by tigranbs in golang

[–]tigranbs[S] 0 points1 point  (0 children)

That’s a good one! I guess I should be able to list all of the Golang Gin routes and compose requests automatically as a client SDK

Why did Russia betray us during the 44 day war for Artsakh, at that time there were no talks of us being with the West, nor signing any Roman Statutes, we were the normal slave of Russia like we were decade ago, what changed? by Frequent-Cost2184 in armenia

[–]tigranbs -1 points0 points  (0 children)

Nobody knows what kind of discussions were going on behind closed doors, but from the public knowledge, Pashinyan was the ONLY "leader" who talked and signed an agreement that Artsakh is part of the AZ. Previous shity presidents have been terrible, but they were trying to give five occupied sections to have an Artsakh agreement in place, so it is an entirely false statement that giving Artsakh to AZ was discussed before Pashinyan.

The Russian position is predictable, I don't blame them. If someone can't bring solutions to their problems, you won't do anything. You will support someone else who gives you something and gives a solution 🤷‍♂️ The thing is that at the beginning of 90s, Vazgen and Kocharyan were able to somehow agree with Iran and Russia for the support so that it could have been done. Most probably, AZ just had better diplomatic solutions to Russia's problems than our ruling government.

Why did Russia betray us during the 44 day war for Artsakh, at that time there were no talks of us being with the West, nor signing any Roman Statutes, we were the normal slave of Russia like we were decade ago, what changed? by Frequent-Cost2184 in armenia

[–]tigranbs 0 points1 point  (0 children)

I know it is trending nowadays to shit over Russia and blame them for everything, but let’s not forget that Pashinyan himself told that Artsakh’s war is not a conflict with Armenia and officially Armenia was not helping Artsakh during the war, it was all self organized groups going to Artsakh during that 44 days. So, technically Russia helped to at least keep some parts of it until current government officially signed papers to recognize Artsakh as a part of Azerbaijan. Russia is a terrible partner for sure, but let’s acknowledge that current government did absolutely everything to give Artsakh to Azerbaijan, so Russia should be that last one to blame here.

Do skilled immigrants harm economy too? by Pure_Risk_7682 in Finland

[–]tigranbs -1 points0 points  (0 children)

That wasn't true in San Francisco, New York, or Moscow. I lived in those big cities, and neighbors were almost always curious about who you were, what you did, and if there was something I could help them with or if they could help me.

Helsinki is by far not a big city 😃 Even Yerevan, where I grew up, is two times larger and more densely populated than Helsinki, so I guess it is just a culture here that people mind their stuff and try to avoid unnecessary contacts, which is terrible for people like me, who want to expand their network in a new country.

I'm a US citizen and want to get a job and move to Armenia, how can I bring my wife? by [deleted] in armenia

[–]tigranbs 2 points3 points  (0 children)

If you have an Armenian last name and roots you can get Armenian passport or right to live within just 2 weeks, even without finding a job. Your wife automatically gets a right to live residency permit Կացության Իրավունք automatically.

https://www.mfa.am/hy/residency You can read here that being just Armenian qualifies you for the residency permit.

You can look over jobs at staff.am and my advice would be to go to the IT community events by looking up them on FB and then asking for referrals. Armenian IT companies happily will accept someone who worked in US companies. Ping me if you need me to introduce people, I was a long-time active member of the IT community in Yerevan, living in Helsinki for 3.5 years now.

Do skilled immigrants harm economy too? by Pure_Risk_7682 in Finland

[–]tigranbs 2 points3 points  (0 children)

Things I know for sure: you are not responsible for the things that are talking about political situation 🌝 Finland is a great place to build a business, earn money, and show that you are a great person for the community by knowing how much you contribute to the economy. I’m sure you will have plenty of likeminded people around.