From 2892e0b1c4a6798c1fff99668dd979db265c6948 Mon Sep 17 00:00:00 2001 From: Eka Prasetia Date: Tue, 15 Apr 2025 22:18:55 +0700 Subject: [PATCH] update readme --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cd11f31..d62f616 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ The goal is to create an AI-powered, user-friendly, and privacy-first experience - **Styling**: [Shadcn UI](https://ui.shadcn.com/) and [Tailwind CSS](https://tailwindcss.com/) - **AI Integration**: - [OpenAI GPT API](https://platform.openai.com/) - - [Gemini AI (Google)](https://ai.google.dev/) + - [ElevenLabs](https://elevenlabs.io/) +- **AI Tool**: [Vercel AI SDK](https://sdk.vercel.ai/) ## ๐Ÿงช Features @@ -28,7 +29,8 @@ The goal is to create an AI-powered, user-friendly, and privacy-first experience - ๐Ÿ—ฃ๏ธ Verbal Fluency Tasks (type words in a category) - โฑ๏ธ Word Recall Test (remember and recall words) - ๐Ÿงฉ Digit Span Test (measures how many numbers (digits) a person can remember and repeat either forward or backward) -- ๐Ÿค– AI-Powered analysis of user inputs using OpenAI & Gemini +- ๐Ÿค– AI-Powered analysis of user inputs using OpenAI +- ๐Ÿค– AI-Powered voice assistant - ๐Ÿ”’ Data Privacy and Security - No data is stored on the server - All processing happens locally in your browser @@ -50,8 +52,12 @@ pnpm run dev Create a `.env.local` file in the root directory and add your OpenAI API key: ```bash +# OpenAI OPENAI_API_KEY=your_openai_api_key -GEMINI_API_KEY=your_gemini_api_key + +# ElevenLabs +AGENT_ID="your_agent_id" +ELEVENLABS_API_KEY="your_elevenlabs_api_key" ``` โš ๏ธ Keep these keys private and secure.