Skip to content

Commit cb84f39

Browse files
committed
docs: update showcase docs for consistency
1 parent f645fc8 commit cb84f39

10 files changed

+33
-18
lines changed

docs/showcase/Ellipsis.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Ellipsis | One-Click Podcast Generation Agent
33
description: A next-gen podcast generation agent that brings human-like, high-quality audio content to life on any topic with just one click
44
sidebar_position: 10
5-
keywords: [ellipsis, podcast, audio, generation, TTS, perplexity, multi-speaker, AI]
5+
keywords: [Ellipsis, podcast, audio, generation, TTS, Perplexity, multi-speaker, AI]
66
---
77

88
**Ellipsis** is a next-generation podcast generation agent that brings human-like, high-quality audio content to life on any topic with just one click. Whether it's breaking news, deep-dive tech explainers, movie reviews, or post-match sports breakdowns, Ellipsis crafts intelligent podcast episodes that sound like they were created by seasoned hosts in a professional studio.

docs/showcase/briefo.mdx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ keywords: [Briefo, finance, news, social media, React Native, Supabase]
2626

2727
## Installation
2828

29+
```bash
2930
git clone https://github.com/adamblackman/briefo-public.git
3031
cd briefo-public
3132
npm install
33+
```
3234
### Environment variables
3335

36+
```ini
3437
# .env (project root)
35-
MY_SUPABASE_URL=https://<project>.supabase.co
38+
MY_SUPABASE_URL=https://<project>.supabase.co
3639
MY_SUPABASE_SERVICE_ROLE_KEY=...
3740
PERPLEXITY_API_KEY=...
3841
LINKPREVIEW_API_KEY=...
@@ -41,15 +44,20 @@ ALPACA_SECRET_KEY=...
4144

4245
# .env.local (inside supabase/)
4346
# duplicate or override any secrets needed by Edge Functions
47+
```
4448

4549
## Usage
4650
Run the Expo development server:
4751

52+
```bash
4853
npx expo start
54+
```
4955

5056
Deploy Edge Functions when you are ready:
5157

58+
```bash
5259
supabase functions deploy perplexity-news perplexity-chat perplexity-research portfolio-tab-data
60+
```
5361

5462
## Code Explanation
5563

docs/showcase/citypulse-ai-search.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: CityPulse | AI-Powered Geospatial Discovery Search
33
description: Real-time local discovery search using Perplexity AI for personalized location insights and recommendations
44
sidebar_position: 2
5-
keywords: [perplexity, geospatial, location, real-time, maps, local-discovery, sonar]
5+
keywords: [Perplexity, geospatial, location, real-time, maps, local-discovery, Sonar]
66
---
77

88
# CityPulse - AI-Powered Geospatial Discovery

docs/showcase/fact-dynamics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Fact Dynamics is a cross-platform Flutter app that provides real-time fact-check
2626
* Real-time speech transcription and fact-checking during live conversations
2727
* Image text extraction and claim verification with source citations
2828
* Claim rating system (TRUE, FALSE, MISLEADING, UNVERIFIABLE) with explanations
29-
* Source Citations** - Provides authoritative URLs backing each verdict
29+
* Source citations - Provides authoritative URLs backing each verdict
3030

3131
* Debate mode with continuous speech recognition and streaming feedback
3232
* User authentication via Firebase (Google, Email) with persistent chat history

docs/showcase/first-principle.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: FirstPrinciples | AI Learning Roadmap Generator
33
description: An AI-powered learning roadmap generator that uses conversational AI to help users identify specific learning topics and provides personalized step-by-step learning plans
44
sidebar_position: 12
5-
keywords: [firstprinciples, learning, roadmap, education, AI, personalized, flask, react, openai, perplexity]
5+
keywords: [FirstPrinciples, learning, roadmap, education, AI, personalized, Flask, React, OpenAI, Perplexity]
66
---
77

88
**FirstPrinciples App** is an AI-powered tool that transforms your broad learning goals into structured, personalized roadmaps. Through an interactive chat, the AI engages you in a conversation, asking targeted questions to refine your learning needs before generating a detailed plan. The application is built to help you learn more efficiently by providing a clear path forward.

docs/showcase/flameguardai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: FlameGuardAI | AI-powered wildfire prevention
33
description: AI-powered wildfire prevention using OpenAI Vision + Perplexity Sonar API
44
sidebar_position: 8
5-
keywords: [FlameGuardAI, MCP, External Fire ,AI Home Safety, Home Inspection]
5+
keywords: [FlameGuardAI, MCP, External Fire, AI Home Safety, Home Inspection]
66
---
77

88
## 🧠 What it does

docs/showcase/monday.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Monday – Voice-First AI Learning Assistant
33
description: An accessible, multimodal AI learning companion that delivers contextual reasoning, 3D visualizations, and curated educational content via natural voice interaction.
44
sidebar_position: 9
5-
keywords: [monday, AI, VR, education, accessibility, voice-assistant, 3D-visualization, multimodal-learning, perplexity, elevenlabs]
5+
keywords: [monday, AI, VR, education, accessibility, voice assistant, 3D visualization, multimodal learning, Perplexity, ElevenLabs]
66
---
77

88
**Monday** is a voice-enabled AI learning companion designed to bridge the gap between natural language queries and high-quality educational content. Inspired by Marvel's JARVIS and FRIDAY, Monday delivers tailored responses in three modes—Basic, Reasoning, and Deep Research—while integrating immersive visualizations, curated video content, and accessibility-first design.
@@ -36,12 +36,16 @@ cd nidsmonday
3636

3737
# Install dependencies
3838
npm install
39+
```
3940

41+
```ini
4042
# Create a .env file and set your API keys
4143
PERPLEXITY_API_KEY=your_api_key
4244
ELEVENLABS_API_KEY=your_api_key
4345
YOUTUBE_API_KEY=your_api_key
46+
```
4447

48+
```bash
4549
# Start Backend Server
4650
node backend-server.js
4751

docs/showcase/perplexigrid.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: PerplexiGrid | Interactive Analytics Dashboards
33
description: Instantly generate analytics dashboards from natural language using live data via Perplexity Sonar API.
44
sidebar_position: 5
5-
keywords: [perplexigrid, dashboard, analytics, BI, AI, Perplexity, sonar, echarts, supabase]
5+
keywords: [PerplexiGrid, dashboard, analytics, BI, AI, Perplexity, Sonar, ECharts, Supabase]
66
---
77

88
**PerplexiGrid** turns natural language into rich, interactive dashboards. Connect your data and mix it with live web data, ask a question, and let the Sonar API do the rest! Complete with drag-and-drop layout, AI widget generation, and ECharts-powered visualizations.
@@ -19,7 +19,7 @@ keywords: [perplexigrid, dashboard, analytics, BI, AI, Perplexity, sonar, echart
1919

2020
PerplexiGrid leverages the Sonar API through four specialized modes:
2121

22-
* **Full Dashboard Generation (f1)**: Creates comprehensive dashboards with multiple widgets using Sonar-pro's advanced capabilities
22+
* **Full Dashboard Generation (f1)**: Creates comprehensive dashboards with multiple widgets using Sonar Pro's advanced capabilities
2323
* **Lightweight Mode (l1)**: Generates quick visualizations for embedded systems and real-time applications
2424
* **Dashboard Updates (r1)**: Enables dynamic modifications through natural language while maintaining context
2525
* **Widget Refinement (r2)**: Provides precise control over individual widget updates
@@ -68,7 +68,7 @@ Explore our [main sonar-api service here.](https://github.com/PetarRan/perplexig
6868

6969
* **Frontend**: React + Vite (TypeScript), ECharts, react-grid-layout
7070
* **Backend**: Supabase Edge Functions (TypeScript on Deno)
71-
* **AI Engine**: Perplexity Sonar-Pro
71+
* **AI Engine**: Perplexity Sonar Pro
7272
* **Infrastructure**: Supabase (PostgreSQL, RLS, Auth), Vercel deployment
7373

7474
## Links

docs/showcase/perplexity-fincaseai.mdx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: FinCaseAI | AI-Powered Credit Dispute Assistant
3-
description: An AI-powered credit dispute assistant using Sonar Reasoning Pro API for approval/rejection recommendations with detailed reasoning
3+
description: An AI-powered credit dispute assistant using Perplexity Sonar Reasoning API for approval/rejection recommendations with detailed reasoning
44
sidebar_position: 11
5-
keywords: [FinCaseAI, perplexity, sonar, finance, disputes, fraud detection, sentiment analysis, LLM, AI]
5+
keywords: [FinCaseAI, Perplexity, Sonar, finance, disputes, fraud detection, sentiment analysis, LLM, AI]
66
---
77

8-
**FinCaseAI** is an AI-powered credit dispute assistant that uses Perplexity's Sonar Reasoning Pro API to analyze financial dispute cases and suggest approve/reject decisions with detailed reasoning. It helps analysts by providing fraud detection, sentiment scoring, and urgency assessment for credit card dispute complaints.
8+
**FinCaseAI** is an AI-powered credit dispute assistant that uses Perplexity's Sonar Reasoning API to analyze financial dispute cases and suggest approve/reject decisions with detailed reasoning. It helps analysts by providing fraud detection, sentiment scoring, and urgency assessment for credit card dispute complaints.
99

1010
## Features
1111

@@ -25,8 +25,11 @@ FinCaseAI sends case descriptions as structured prompts to the **Sonar API**, as
2525

2626
The API response is parsed and shown alongside internal fraud and sentiment scores for a complete picture.
2727

28-
> **Example Prompt to Sonar**
29-
> "_Given the following customer complaint, should the dispute be approved or rejected? Provide a short explanation._"
28+
> **Example prompt to Sonar**
29+
>
30+
> ```text
31+
> Given the following customer complaint, should the dispute be approved or rejected? Provide a short explanation.
32+
> ```
3033
3134
## Tech Stack
3235
@@ -39,7 +42,7 @@ The API response is parsed and shown alongside internal fraud and sentiment scor
3942
## Setup Instructions
4043
4144
1. Clone the [GitHub repo](https://github.com/PrashansaChaudhary/Perplexity-FinCaseAI)
42-
2. Create a `.env` file with your `SONAR_API_KEY`
45+
2. Create a `.env` file with your `PERPLEXITY_API_KEY`
4346
3. Run the backend using Flask
4447
4. Start the frontend using Vite
4548
5. Open `http://localhost:5173` and start testing your cases

docs/showcase/perplexity-flutter.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: Perplexity Dart & Flutter SDKs
33
description: Lightweight, type-safe SDKs for seamless Perplexity API integration in Dart and Flutter applications
44
sidebar_position: 4
5-
keywords: [Perplexity, Flutter, Dart, SDK, API, streaming, chat-completions, sonar, type-safe, widgets]
5+
keywords: [Perplexity, Flutter, Dart, SDK, API, streaming, chat-completions, Sonar, type-safe, widgets]
66
---
77

88
# Perplexity Dart & Flutter SDKs
99

10-
**Perplexity Dart & Flutter SDKs** provide comprehensive toolkit for integrating Perplexity's AI capabilities into Dart and Flutter applications. Built specifically for the Flutter community, these packages include a lightweight core API client and ready-to-use Flutter widgets with BLoC state management.
10+
**Perplexity Dart & Flutter SDKs** provide a comprehensive toolkit for integrating Perplexity's AI capabilities into Dart and Flutter applications. Built specifically for the Flutter community, these packages include a lightweight core API client and ready-to-use Flutter widgets with BLoC state management.
1111

1212
## Features
1313

0 commit comments

Comments
 (0)