Stan Lee's voice and likeness have been resurrected, thanks to AI
ElevenLabs can now offer the late Marvel icon Stan Lee as part of its AI-generated voice portfolio.
AI人工智能最新资讯、模型发布、研究进展
ElevenLabs can now offer the late Marvel icon Stan Lee as part of its AI-generated voice portfolio.
Memory layer for LLMs that stores repo rules + past lessons Discussion | Link
Hi HN, we’re open-sourcing ktx. It’s an executable context layer that makes agents reliable on your data stack. We built it after going through the experience of building production-grade data agents for dozens of companies. If you’ve also tried building them, or simply tried using Claude Code or Codex on your data warehouse, you’ll know that accuracy is the #1 issue. Agents are great at generating valid SQL, but it’s not always correct SQL. To cite a few examples of “agents gone wrong”: - Stale
The AI Marketing Agent Powered by Ahrefs Data Discussion | Link
After several months of testing, Waymo is finally ready to invite non-employee passengers into its newest vehicle, the Zeekr RT minivan, which has been rebranded as Ojai. Waymo says it will begin offering "select riders" access in San Francisco, Los Angeles, and Phoenix, before "gradually" expanding to more riders and cities. Trips will be free […]
The pale-blue Ojai vehicles will start picking up members of the public in California and Arizona today.
LLM usage tracking that lives in your Mac's notch Discussion | Link
AI Video Cutter for viral Shorts, Reels, TikTok in Telegram Discussion | Link
Fosi Audio announced a new sound card today with a unique feature designed to give FPS players an advantage. The C3 Gaming Sound Card, which sits outside your PC or laptop and connects with a USB-C cable, includes the company's StepSense "audio enhancement technology" powered by a model that was "trained on extensive FPS audio […]
submitted by /u/Shadowys [link] [留言]
submitted by /u/Snapdragon_4U [link] [留言]
New renders offer a closer look at Apple’s planned AI overhaul for iOS 27, including a redesigned Siri experience powered and standalone Siri app.
At least two owners have lost control of their vehicles after a critical suspension component broke. In both cases, the vehicles had been previously serviced.
Apple's long-awaited Siri overhaul, expected to arrive in iOS 27, might look a lot like ChatGPT with a splash of Liquid Glass. Renders from Bloomberg offer a preview of iOS 27, including the new app and chat interface for Siri. The renders are "based on information viewed by Bloomberg and people with knowledge of [Apple's] […]
A new crop of AI labs are focused on recursive self-improvement — but the goal is proving elusive.
Enterprise AI is entering a different phase now, one where enterprises are no longer evaluating whether AI is exciting. They are evaluating whether it is safe to deploy broadly.
The update signals YouTube's ongoing efforts to compete with other platforms for podcast audiences.
Hey everyone, I just sent issue #34 of the AI Hacker Newsletter , a weekly roundup of the best AI links and the discussions around them. Here are some of title you can find in the issue: Using AI to write better code more slowly I think Anthropic and OpenAI have found product-market fit Can we have the day off? Google’s AI is being manipulated. The search giant is quietly fighting back Intuit to lay off over 3k employees to refocus on AI If you want to receive a weekly email with over 30 links like these, please join here: https://hackernewsai.com/ submitted by /u/alexeestec [link] [留言]
Hi, I was working on extension that has an end-to-end encrypted sync, and when user first time install the extension on a browser where it needs to download all the data (can be a few hundreds or thousands), then it was taking a huge amount of time in the first place then I spend some time researching and found that using workers with a worker pool is the best thing I can do to improve the performance, now it's significantly faster as compared to previous encryption/decryption approach where everything was inside the main thread and being done one by one. but, it's still not like the protonmail inbox where I never see any decryption progress when I login and open the inbox, so, how does that work and how can I make my tool work like that? and as I can't explicitly set that how many workers will actually work in parallel during runtime, as it's up-to the browser based on the available resource, so, is there any other way to get the most out of the workers to make the encryption decryption even faster? btw, I'm currently using the same salt per batch of 100 items, salt, iv, derived keys are generated once and passed to those workers for batches, so, workers are not doing same thing again for common tasks, decreased iteration from 600K to 400K for faster performance. so, if anyone can help me understanding how these works, and how can I make it even better, I'll really appreciate that :) submitted by /u/nhrtrix [link] [留言]