EchoAccess makes web forms accessible, one conversation at a time.
An AI assistant for blind and low‑vision users that turns complex web forms into guided conversations and remembers your details securely.
Account Opening Form
Web forms are broken for blind users. EchoAccess fixes them.
Guided, screen‑reader friendly conversations
EchoAccess transforms rigid forms into intuitive, guided conversations, making complex fields easy to understand and respond to with natural language.
Understands forms, not just fields
Leveraging advanced AI, EchoAccess comprehends the entire form context, ensuring accurate data entry and a truly helpful assistant experience.
Remembers your details across sites
Securely stores and recalls your information, pre-filling common details across different forms and websites for unmatched convenience.
Built with accessibility and privacy in mind
Designed from the ground up for accessibility, with robust privacy controls to keep your personal data safe and confidential.
How EchoAccess works
Scan or select a form
Point EchoAccess at any web form or select one from your saved list.
Answer in conversation
EchoAccess turns form fields into a natural conversation. Just talk or type!
Re‑use your info safely
Your details are remembered securely, making future forms a breeze to complete.
Effortless Form Identification
With EchoAccess, initiating the process is seamless. Whether you encounter a new form online or return to a previously used one, our system quickly identifies and prepares it for your interaction. Our intelligent scanning technology understands the form's structure and fields, setting the stage for a smooth, conversational experience.
Engage in Natural Conversations
Gone are the days of struggling with complex layouts and inaccessible fields. EchoAccess transforms every form into a simple, guided conversation. Our AI assistant walks you through each step, asking questions in plain language. You can respond using your voice or by typing, making form completion feel less like a chore and more like a helpful chat.
Secure & Smart Data Recall
EchoAccess remembers your information, securely storing details like your name, address, and common preferences. This means you only need to provide information once. When you encounter new forms, EchoAccess intelligently pre-fills known fields, drastically reducing the time and effort required, all while maintaining the highest privacy standards.
Powered by Backboard IO
EchoAccess harnesses the cutting-edge capabilities of Backboard IO to deliver its intelligent assistant experience. Backboard provides the robust memory, RAG (Retrieval-Augmented Generation), and stateful conversational threads necessary for understanding complex form logic and remembering user details over time.
This powerful integration allows EchoAccess to go beyond simple field-filling, offering truly guided and context-aware assistance. It ensures that every interaction is personalized, efficient, and secure, making inaccessible web forms a thing of the past for blind and low-vision users.
// backboard-client.ts
import { Backboard } from 'backboard-io';
import { FormSchema } from './types';
class EchoAccessAgent {
private backboard: Backboard;
private formSchema: FormSchema;
constructor(apiKey: string, formSchema: FormSchema) {
this.backboard = new Backboard({ apiKey });
this.formSchema = formSchema;
}
public async startConversation(userId: string) {
const thread = await this.backboard.createThread({
userId,
context: { formSchema: this.formSchema },
metadata: { agentType: 'EchoAccess' }
});
return thread.id;
}
public async processMessage(threadId: string, message: string) {
const response = await this.backboard.sendMessage(threadId, {
text: message,
intent: 'form_filling'
});
return response.data;
}
}
export default EchoAccessAgent;
Voices of Impact
EchoAccess has been a game-changer for me. Filling out online forms used to be a nightmare, but now it's just a simple, guided conversation. I feel so much more independent!
The ability to remember my details securely across different websites is revolutionary. EchoAccess saves me so much time and frustration. It's truly built with users like me in mind.
Frequently Asked Questions
EchoAccess is an AI assistant powered by Backboard.io that transforms complex web forms into simple, guided conversations for blind and low-vision users, making them accessible and easy to complete.
We prioritize user privacy. EchoAccess securely encrypts and stores your information, remembering details only with your explicit consent and never sharing them with third parties. All data handling complies with stringent privacy standards.
EchoAccess is designed to work with a vast majority of web forms. Its AI understands diverse form structures. While rare exceptions may exist due to highly custom or malformed forms, our goal is near-universal compatibility.
Backboard IO is the underlying AI platform that provides EchoAccess with capabilities like long-term memory, Retrieval-Augmented Generation (RAG), and stateful conversational threads, enabling it to offer intelligent and context-aware assistance.