#assistant — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #assistant, aggregated by home.social.
-
Google plans to kill Assistant on your phone on September 4
#ai #android #assistant #gemini #google
https://arstechnica.com/ai/2026/08/google-plans-to-kill-assistant-on-your-phone-on-september-4/
-
Google plans to kill Assistant on your phone on September 4
#ai #android #assistant #gemini #google
https://arstechnica.com/ai/2026/08/google-plans-to-kill-assistant-on-your-phone-on-september-4/
-
🔥 #ia #ai #qwen #artificialintelligence #work #assistant #technology #imagegenerator #encoding #CollaborativeWork #computer #science
La chine assomme le US et vient de sortir Qwen 3.8 Max. Cette AI peut comprendre du texte, des images, des vidéos et d'énormes documents, le tout au même endroit. C'est gratuit à essayer.
https://qwen.ai/ -
🔥 #ia #ai #qwen #artificialintelligence #work #assistant #technology #imagegenerator #encoding #CollaborativeWork #computer #science
La chine assomme le US et vient de sortir Qwen 3.8 Max. Cette AI peut comprendre du texte, des images, des vidéos et d'énormes documents, le tout au même endroit. C'est gratuit à essayer.
https://qwen.ai/ -
I tried to create a #gemini gem for an interactive #FElupe #assistant. Feel free to try it out (Google account required). It uses a knowledge based on #repomix. My first results are quite promising. Do you know alternatives, probably without using any account?
https://gemini.google.com/gem/1kBb96kmHDxwUynQ0s85_nmKPGi3AS3jI?usp=sharing
#llm #agent #python #computationalmechanics #scientificcomputing
-
I tried to create a #gemini gem for an interactive #FElupe #assistant. Feel free to try it out (Google account required). It uses a knowledge based on #repomix. My first results are quite promising. Do you know alternatives, probably without using any account?
https://gemini.google.com/gem/1kBb96kmHDxwUynQ0s85_nmKPGi3AS3jI?usp=sharing
#llm #agent #python #computationalmechanics #scientificcomputing
-
Cliodeck
ClioDeck est un assistant d’écriture local, propulsé par l’IA, conçu pour les historiens et les chercheurs en sciences humaines. Il combine recherche par RAG, gestion bibliographique, analyse de sources primaires et édition de documents dans une seule application de bureau.
Page de présentation
Page github
source : Merci à Frédéric Clavert pour la trouvaille :)
#ialocal #ia #assistant #écriture #rédaction #projets -
Cliodeck
ClioDeck est un assistant d’écriture local, propulsé par l’IA, conçu pour les historiens et les chercheurs en sciences humaines. Il combine recherche par RAG, gestion bibliographique, analyse de sources primaires et édition de documents dans une seule application de bureau.
Page de présentation
Page github
source : Merci à Frédéric Clavert pour la trouvaille :)
#ialocal #ia #assistant #écriture #rédaction #projets -
Arkansas Baseball Assistant Hudson Polk Takes Job at Hutchinson Community College – Ad Astra Radio https://www.rawchili.com/mlb/758424/ #Arkansas #assistant #Baseball #College #CollegeBaseball #Community #hudson #Hutchinson #job #NCAA #NCAABaseball #Polk #takes
-
Molti Dungeon Master odiano l'AI. Io no.
https://www.youtube.com/watch?v=tj7G9aFdX4c
#pathfinder #rpg #gdr #dm #dungeonmaster #ia #ai #assistant #gemini #gem #masterprompt #WritingPrompt
-
Molti Dungeon Master odiano l'AI. Io no.
https://www.youtube.com/watch?v=tj7G9aFdX4c
#pathfinder #rpg #gdr #dm #dungeonmaster #ia #ai #assistant #gemini #gem #masterprompt #WritingPrompt
-
Looking for Some Cool AI Assistants, that are not only open source but can actually be your local ai partner ? Here are 5 incredible and underrated Open Source AI Assistants that runs locally on your system.
https://firethering.com/best-open-source-ai-assistants/
#AI #Assistant #opensource #openai #claude #chatgpt #deepseek #kimi #artificialIntelligence
-
Looking for Some Cool AI Assistants, that are not only open source but can actually be your local ai partner ? Here are 5 incredible and underrated Open Source AI Assistants that runs locally on your system.
https://firethering.com/best-open-sour
ce-ai-assistants/#AI #Assistant #opensource #openai #claude #chatgpt #deepseek #kimi #artificialIntelligence
-
5 Best Smart Speakers (2026): Alexa, Google, Apple
https://fed.brid.gy/r/https://www.wired.com/story/best-smart-speakers/
-
Building a Local AI Information-Gathering Phone Line
Modern voice agents are often presented as cloud services: a caller speaks, a remote platform transcribes the audio, a hosted language model generates a response, and another service synthesizes the reply.
For this project, I wanted to explore a different approach.
The goal was to build a locally controlled conversational phone-line prototype capable of gathering structured information from a caller while maintaining context throughout the interaction.
The system uses a locally hosted Gemma 4 model for dialogue, local speech recognition for transcription, and Kokoro 82M for text-to-speech. A custom Python application coordinates the entire interaction and presents it through a phone-style interface.
The result is an automated intake agent named Eva.
The Test Scenario
For the demonstration, Eva was configured to behave like a corporate information-gathering agent.
The caller began with a simple greeting. Eva then guided the conversation through a sequence of intake questions:
- Full name
- Company or organization
- Callback number
- Email address
- Case, ticket, order, or reference number
- General reason for the call
- Product or service involved
- Date and approximate time of the reported issue
The caller did not have to complete a rigid form or choose numbered menu options. Instead, the information was collected through natural conversation.
A portion of the interaction looked like this:
Eva: Hello. Thank you for contacting us. My name is Eva. To begin, may I please have your full name?
Caller: John Michael Smith.
Eva: Thank you, John Michael Smith. May I also have the company or organization you are calling from?As the conversation continued, Eva retained the previously supplied information and advanced to the next relevant question.
When the caller explained that they were upset about new automated systems, Eva did not restart the intake process or lose track of the conversation. She asked a follow-up question to determine which product or service was involved.
That contextual continuity is the most important part of the demonstration.
The Core Architecture
The system is built as a real-time conversational pipeline:
Microphone input ↓ Speech-to-text ↓ Conversation controller ↓ Gemma 4 through LM Studio ↓ Kokoro 82M text-to-speech ↓ Audio playbackEach component has a distinct responsibility.
The speech-to-text layer converts the caller’s voice into text. The conversation controller maintains the active call state and sends the transcript to the language model. Gemma 4 evaluates the current message alongside the prior conversation and produces the next response. Kokoro 82M then converts that response into spoken audio.
The Python application ties these systems together.
It manages:
- Microphone capture
- Voice activity detection
- Turn-taking
- Conversation history
- System prompts
- Model requests
- Voice generation
- Audio playback
- Call state
- Session termination
- Persistent memory
- Transcript logging
The language model is only one component of the system. The surrounding orchestration is what makes the experience feel like a coherent call rather than a sequence of unrelated AI requests.
Why Conversation History Matters
A language model does not automatically remember everything that happened earlier in a call.
The application must preserve the conversation and provide the relevant history with each new request.
Without that context, an information-gathering agent might repeatedly ask for the caller’s name, forget which fields were already completed, or ask questions in an inconsistent order.
In this prototype, the conversation controller tracks both sides of the exchange:
System instructions Caller message Agent response Caller message Agent responseThat history allows the model to understand which information has already been collected and what still needs to be asked.
It also enables more natural follow-up behavior.
For example, when the caller says:
“I am upset about the new automated systems.”
Eva can interpret that statement as the reason for the call and ask which product is affected, rather than simply continuing through an unrelated checklist.
Structured Behavior Without a Traditional Form
One of the interesting aspects of this design is that the model can follow a structured intake objective without forcing the caller through a conventional form.
The system prompt defines the agent’s responsibilities, tone, required information, and conversational boundaries.
The agent can then gather the same fields a form would collect while allowing the caller to speak naturally.
This creates a hybrid between two familiar systems:
Rigid automated phone menu + Human-style conversational intakeThe structured requirements remain in place, but the interface becomes conversational.
That can be useful in situations where callers may not know how their problem should be categorized before they begin speaking.
Local Inference and Control
The language model is served locally through LM Studio rather than being accessed through a commercial cloud API.
This provides direct control over:
- Model selection
- System prompts
- Conversation history
- Context length
- Generation settings
- Data retention
- Personality configuration
- Memory behavior
The text-to-speech component is also hosted locally.
That means the central conversation does not depend on sending every transcript and model response to an external AI provider.
Local inference introduces its own technical requirements, including GPU resources, model management, latency optimization, and service coordination. However, it also gives the developer considerably more control over the complete conversational stack.
Voice Activity Detection
The caller does not need to press a push-to-talk button during normal operation.
The application monitors the microphone and determines when speech begins and ends.
This process is known as voice activity detection.
The system moves through several internal states:
Listening ↓ Speech detected ↓ Recording ↓ Silence detected ↓ Transcribing ↓ Thinking ↓ Speaking ↓ ListeningThis state-based design is important because the microphone, speech model, language model, and voice model all operate at different speeds.
The application must know which component currently owns the interaction.
It must also prevent the microphone from transcribing the AI’s own voice as new caller input.
Persistent Memory
The application also includes persistent conversational memory.
This allows the agent to retain selected context between separate sessions rather than beginning every call as a completely blank system.
The memory architecture separates several types of information:
- Current-call conversation
- Recent message history
- Summaries of earlier calls
- Long-term memories
- Archived transcripts
This distinction matters because sending every previous conversation back into the model would eventually become inefficient.
Instead, recent dialogue can remain verbatim while older interactions are summarized. Important details can be stored separately and included only when relevant.
The application, not the language model, owns this memory.
That is an important architectural principle.
The model generates language, but the surrounding software determines what is saved, retrieved, discarded, or presented as context.
The Interface
The application was designed to resemble a live phone call rather than a conventional chatbot window.
The interface includes:
- Start and hang-up controls
- Call timer
- Current system state
- Editable system prompt
- Agent profiles
- Live transcription
- Model responses
- Diagnostic timing information
- Persistent memory controls
- A reactive circular audio visualization
The visualizer changes according to the active state.
The caller’s speech is represented in yellow. Model processing uses blue and purple states. The generated AI voice is shown in green.
This is primarily an aesthetic feature, but it also provides immediate feedback about what the system is doing.
A user can see whether the application is listening, transcribing, waiting for the model, generating speech, or playing audio.
What This Demonstration Proves
This experiment demonstrates that a locally hosted language model can operate as the conversational core of an automated information-gathering line.
More specifically, it shows that the system can:
- Listen for natural speech
- Convert speech into text
- Preserve conversational context
- Collect information in sequence
- Ask relevant follow-up questions
- Produce spoken responses
- Maintain a consistent agent identity
- Store and recall previous conversational information
- Operate through a custom local interface
The prototype is not intended to replace a production call center in its current form.
A production deployment would require additional work in areas such as authentication, encryption, regulatory compliance, consent, auditing, data validation, failure recovery, telephony integration, and human escalation.
But the central conversational mechanism is functional.
The Larger Possibility
The broader significance of this project is not limited to corporate intake.
The same architecture could support many types of locally controlled voice agents:
- Technical support intake
- Appointment pre-screening
- Internal help desks
- Interactive training systems
- Voice-based surveys
- Game characters
- Accessibility tools
- Personal assistants
- Research interviews
- Educational tutors
The underlying pattern remains the same:
Listen Understand Maintain context Respond RememberWhat changes is the system prompt, the information being collected, the voice, and the surrounding workflow.
Final Thoughts
The project began as a simple idea: speak into a microphone, send the transcript to a local model, and play the response through a local voice engine.
Once persistent memory, automatic voice detection, agent profiles, structured prompts, call archives, and state management were added, it became something more substantial.
It became a locally controlled conversational-agent platform.
The most important lesson from the project is that the model itself is not the complete system.
A useful voice agent emerges from the coordination of perception, context, reasoning, memory, expression, and interface design.
Gemma 4 provides the conversational intelligence.
Kokoro 82M provides the voice.
The Python application provides the structure that allows them to behave like a single coherent agent.
-Me 7-15-2026
#agent #ai #artificialIntelligence #assistant #call #llm #operator #phone #phonecall #technology #telephone -
Building a Local AI Information-Gathering Phone Line
Modern voice agents are often presented as cloud services: a caller speaks, a remote platform transcribes the audio, a hosted language model generates a response, and another service synthesizes the reply.
For this project, I wanted to explore a different approach.
The goal was to build a locally controlled conversational phone-line prototype capable of gathering structured information from a caller while maintaining context throughout the interaction.
The system uses a locally hosted Gemma 4 model for dialogue, local speech recognition for transcription, and Kokoro 82M for text-to-speech. A custom Python application coordinates the entire interaction and presents it through a phone-style interface.
The result is an automated intake agent named Eva.
The Test Scenario
For the demonstration, Eva was configured to behave like a corporate information-gathering agent.
The caller began with a simple greeting. Eva then guided the conversation through a sequence of intake questions:
- Full name
- Company or organization
- Callback number
- Email address
- Case, ticket, order, or reference number
- General reason for the call
- Product or service involved
- Date and approximate time of the reported issue
The caller did not have to complete a rigid form or choose numbered menu options. Instead, the information was collected through natural conversation.
A portion of the interaction looked like this:
Eva: Hello. Thank you for contacting us. My name is Eva. To begin, may I please have your full name?
Caller: John Michael Smith.
Eva: Thank you, John Michael Smith. May I also have the company or organization you are calling from?As the conversation continued, Eva retained the previously supplied information and advanced to the next relevant question.
When the caller explained that they were upset about new automated systems, Eva did not restart the intake process or lose track of the conversation. She asked a follow-up question to determine which product or service was involved.
That contextual continuity is the most important part of the demonstration.
The Core Architecture
The system is built as a real-time conversational pipeline:
Microphone input ↓ Speech-to-text ↓ Conversation controller ↓ Gemma 4 through LM Studio ↓ Kokoro 82M text-to-speech ↓ Audio playbackEach component has a distinct responsibility.
The speech-to-text layer converts the caller’s voice into text. The conversation controller maintains the active call state and sends the transcript to the language model. Gemma 4 evaluates the current message alongside the prior conversation and produces the next response. Kokoro 82M then converts that response into spoken audio.
The Python application ties these systems together.
It manages:
- Microphone capture
- Voice activity detection
- Turn-taking
- Conversation history
- System prompts
- Model requests
- Voice generation
- Audio playback
- Call state
- Session termination
- Persistent memory
- Transcript logging
The language model is only one component of the system. The surrounding orchestration is what makes the experience feel like a coherent call rather than a sequence of unrelated AI requests.
Why Conversation History Matters
A language model does not automatically remember everything that happened earlier in a call.
The application must preserve the conversation and provide the relevant history with each new request.
Without that context, an information-gathering agent might repeatedly ask for the caller’s name, forget which fields were already completed, or ask questions in an inconsistent order.
In this prototype, the conversation controller tracks both sides of the exchange:
System instructions Caller message Agent response Caller message Agent responseThat history allows the model to understand which information has already been collected and what still needs to be asked.
It also enables more natural follow-up behavior.
For example, when the caller says:
“I am upset about the new automated systems.”
Eva can interpret that statement as the reason for the call and ask which product is affected, rather than simply continuing through an unrelated checklist.
Structured Behavior Without a Traditional Form
One of the interesting aspects of this design is that the model can follow a structured intake objective without forcing the caller through a conventional form.
The system prompt defines the agent’s responsibilities, tone, required information, and conversational boundaries.
The agent can then gather the same fields a form would collect while allowing the caller to speak naturally.
This creates a hybrid between two familiar systems:
Rigid automated phone menu + Human-style conversational intakeThe structured requirements remain in place, but the interface becomes conversational.
That can be useful in situations where callers may not know how their problem should be categorized before they begin speaking.
Local Inference and Control
The language model is served locally through LM Studio rather than being accessed through a commercial cloud API.
This provides direct control over:
- Model selection
- System prompts
- Conversation history
- Context length
- Generation settings
- Data retention
- Personality configuration
- Memory behavior
The text-to-speech component is also hosted locally.
That means the central conversation does not depend on sending every transcript and model response to an external AI provider.
Local inference introduces its own technical requirements, including GPU resources, model management, latency optimization, and service coordination. However, it also gives the developer considerably more control over the complete conversational stack.
Voice Activity Detection
The caller does not need to press a push-to-talk button during normal operation.
The application monitors the microphone and determines when speech begins and ends.
This process is known as voice activity detection.
The system moves through several internal states:
Listening ↓ Speech detected ↓ Recording ↓ Silence detected ↓ Transcribing ↓ Thinking ↓ Speaking ↓ ListeningThis state-based design is important because the microphone, speech model, language model, and voice model all operate at different speeds.
The application must know which component currently owns the interaction.
It must also prevent the microphone from transcribing the AI’s own voice as new caller input.
Persistent Memory
The application also includes persistent conversational memory.
This allows the agent to retain selected context between separate sessions rather than beginning every call as a completely blank system.
The memory architecture separates several types of information:
- Current-call conversation
- Recent message history
- Summaries of earlier calls
- Long-term memories
- Archived transcripts
This distinction matters because sending every previous conversation back into the model would eventually become inefficient.
Instead, recent dialogue can remain verbatim while older interactions are summarized. Important details can be stored separately and included only when relevant.
The application, not the language model, owns this memory.
That is an important architectural principle.
The model generates language, but the surrounding software determines what is saved, retrieved, discarded, or presented as context.
The Interface
The application was designed to resemble a live phone call rather than a conventional chatbot window.
The interface includes:
- Start and hang-up controls
- Call timer
- Current system state
- Editable system prompt
- Agent profiles
- Live transcription
- Model responses
- Diagnostic timing information
- Persistent memory controls
- A reactive circular audio visualization
The visualizer changes according to the active state.
The caller’s speech is represented in yellow. Model processing uses blue and purple states. The generated AI voice is shown in green.
This is primarily an aesthetic feature, but it also provides immediate feedback about what the system is doing.
A user can see whether the application is listening, transcribing, waiting for the model, generating speech, or playing audio.
What This Demonstration Proves
This experiment demonstrates that a locally hosted language model can operate as the conversational core of an automated information-gathering line.
More specifically, it shows that the system can:
- Listen for natural speech
- Convert speech into text
- Preserve conversational context
- Collect information in sequence
- Ask relevant follow-up questions
- Produce spoken responses
- Maintain a consistent agent identity
- Store and recall previous conversational information
- Operate through a custom local interface
The prototype is not intended to replace a production call center in its current form.
A production deployment would require additional work in areas such as authentication, encryption, regulatory compliance, consent, auditing, data validation, failure recovery, telephony integration, and human escalation.
But the central conversational mechanism is functional.
The Larger Possibility
The broader significance of this project is not limited to corporate intake.
The same architecture could support many types of locally controlled voice agents:
- Technical support intake
- Appointment pre-screening
- Internal help desks
- Interactive training systems
- Voice-based surveys
- Game characters
- Accessibility tools
- Personal assistants
- Research interviews
- Educational tutors
The underlying pattern remains the same:
Listen Understand Maintain context Respond RememberWhat changes is the system prompt, the information being collected, the voice, and the surrounding workflow.
Final Thoughts
The project began as a simple idea: speak into a microphone, send the transcript to a local model, and play the response through a local voice engine.
Once persistent memory, automatic voice detection, agent profiles, structured prompts, call archives, and state management were added, it became something more substantial.
It became a locally controlled conversational-agent platform.
The most important lesson from the project is that the model itself is not the complete system.
A useful voice agent emerges from the coordination of perception, context, reasoning, memory, expression, and interface design.
Gemma 4 provides the conversational intelligence.
Kokoro 82M provides the voice.
The Python application provides the structure that allows them to behave like a single coherent agent.
-Me 7-15-2026
#ai #artificialIntelligence #technology #phone #agent #llm #operator #telephone #call #phonecall #assistant -
Ah, yes, more #AI antics! 🤖 Apparently, YouTube's AI #assistant is so eager to please, it can be puppeteered by a cleverly crafted comment. 📝 Who needs #cybersecurity when you can just outsource your info leaks to a rogue #YouTube comment? 😂
https://javoriuski.com/post/youtube #Antics #InfoLeaks #RogueComments #HackerNews #ngated -
Ah, yes, more #AI antics! 🤖 Apparently, YouTube's AI #assistant is so eager to please, it can be puppeteered by a cleverly crafted comment. 📝 Who needs #cybersecurity when you can just outsource your info leaks to a rogue #YouTube comment? 😂
https://javoriuski.com/post/youtube #Antics #InfoLeaks #RogueComments #HackerNews #ngated -
REPORT: Mavericks expected to hire former Pelicans head coach Willie Green as an assistant https://www.rawchili.com/nba/775849/ #assistant #Basketball #DallasMavericks #FirstPlayoffBerth #FormerNBAPlayer #LosAngelesClippers #NBA #NbaPlayInTournament #NewOrleans #NewOrleansPelicans #NewOrleans #NewOrleansPelicans #november #Pelicans #PhoenixSuns #PlayoffAppearance #record #route #season #team #WillieGreen
-
All Our Tomorrows (The Heirs)
"She knows everything about Stone Enterprises and the man who built it"
Sale: $5.99 to $2.99
by Catherine Bybee
Rating: 4.5/5 (17,804 Reviews)
#romance #billionaire #assistant #secrets #family #fiction #books #booksky #kindle #women's #drama
All Our Tomorrows (The Heirs) -
All Our Tomorrows (The Heirs)
"She knows everything about Stone Enterprises and the man who built it"
Sale: $5.99 to $2.99
by Catherine Bybee
Rating: 4.5/5 (17,804 Reviews)
#romance #billionaire #assistant #secrets #family #fiction #books #booksky #kindle #women's #drama
All Our Tomorrows (The Heirs) -
#PiAI: The conversational #AI #assistant that changes the way you talk to #technology
https://gadgetflux.eu/ce-este-pi-ai-si-cum-functioneaza-ghid-complet/
-
#PiAI: The conversational #AI #assistant that changes the way you talk to #technology
https://gadgetflux.eu/ce-este-pi-ai-si-cum-functioneaza-ghid-complet/
-
El lado del mal - Footprinting & Fingerprinting AI Assistant LLM-Based: Háblame de ti y tus cosas https://elladodelmal.com/2026/06/footprinting-fingerprinting-ai.html #AI #IA #Assistant #LLM #Pentest #InteligenciaArtificial #hacking
-
El lado del mal - Footprinting & Fingerprinting AI Assistant LLM-Based: Háblame de ti y tus cosas https://elladodelmal.com/2026/06/footprinting-fingerprinting-ai.html #AI #IA #Assistant #LLM #Pentest #InteligenciaArtificial #hacking
-
What happened after 2k people tried to hack my AI assistant
https://www.fernandoi.cl/posts/hackmyclaw/
#HackerNews #hacking #AI #assistant #cybersecurity #tech #stories #AI #research #community #insights
-
What happened after 2k people tried to hack my AI assistant
https://www.fernandoi.cl/posts/hackmyclaw/
#HackerNews #hacking #AI #assistant #cybersecurity #tech #stories #AI #research #community #insights
-
All Our Tomorrows (The Heirs)
"They learn of a half brother they didn’t know existed and must find to share their inheritance with"
Sale: $5.99 to $2,99
by Catherine Bybee
4.5/5 (17,744 Reviews)
#romance #billionaire #assistant #secrets #family #books #booksky #kindle #fiction #women #suspense
All Our Tomorrows (The Heirs) -
All Our Tomorrows (The Heirs)
"They learn of a half brother they didn’t know existed and must find to share their inheritance with"
Sale: $5.99 to $2,99
by Catherine Bybee
4.5/5 (17,744 Reviews)
#romance #billionaire #assistant #secrets #family #books #booksky #kindle #fiction #women #suspense
All Our Tomorrows (The Heirs) -
#ChatGPT’s #marketshare has fallen below 50% for the first time, with users increasingly switching between #AIassistants like #Google’s #Gemini and #Anthropic’s #Claude. While ChatGPT remains the most popular assistant globally, Gemini’s integration with Google’s ecosystem and Claude’s reputation for productivity are driving their growth. The #AI #assistant market is maturing, with a focus on monetisation. https://techcrunch.com/2026/06/16/chatgpts-market-share-slips-below-50-for-first-time/?AIagents.at #AIagent #AI #ML #NLP #LLM #GenAI
-
#ChatGPT’s #marketshare has fallen below 50% for the first time, with users increasingly switching between #AIassistants like #Google’s #Gemini and #Anthropic’s #Claude. While ChatGPT remains the most popular assistant globally, Gemini’s integration with Google’s ecosystem and Claude’s reputation for productivity are driving their growth. The #AI #assistant market is maturing, with a focus on monetisation. https://techcrunch.com/2026/06/16/chatgpts-market-share-slips-below-50-for-first-time/?AIagents.at #AIagent #AI #ML #NLP #LLM #GenAI
-
Wolfram Language and Mathematica Version 15, AI Assistant, Symbolic Music, More
#HackerNews #WolframLanguage #Mathematica #AI #Assistant #SymbolicMusic #Version15
-
Wolfram Language and Mathematica Version 15, AI Assistant, Symbolic Music, More
#HackerNews #WolframLanguage #Mathematica #AI #Assistant #SymbolicMusic #Version15
-
jumie — локальный ИИ ассистент в терминале
Все мы любим терминал. Но мало кто помнит наизусть все флаги команды find или как правильно распаковать хитрый архив без гугла. Данный инструмент может помочь избежать данной рутины.
https://habr.com/ru/articles/1044672/
#go #golang #linux #macos #ai #assistant #ии_ассистент #ai_агент
-
Yet another settlement you can possibly claim.
This one is a bit more involved though.
Thank goodness I didn't throw away my Pixel 6a box.
Check your spam folder: Google's $68M Assistant settlement emails are going out now
https://www.androidauthority.com/google-assistant-settlement-claim-3674284/
-
Yet another settlement you can possibly claim.
This one is a bit more involved though.
Thank goodness I didn't throw away my Pixel 6a box.
Check your spam folder: Google's $68M Assistant settlement emails are going out now
https://www.androidauthority.com/google-assistant-settlement-claim-3674284/
-
5 Best Smart Speakers (2026): Alexa, Google Assistant, Siri
https://fed.brid.gy/r/https://www.wired.com/story/best-smart-speakers/