Skip to content

Commit

Permalink
Add demo
Browse files Browse the repository at this point in the history
  • Loading branch information
RickCarlino committed May 28, 2023
1 parent 23e2f0c commit c0fade9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
<p align="center">
<img src="./logo.png" alt="The KoalaSRS Logo (for now)"/>
</p>
<p align="center">
<img src="./screenshot.jpg" alt="The KoalaSRS Logo (for now)"/>
</p>

Hey there! Welcome to KoalaSRS, a fun and friendly Korean-only [spaced repetition system](https://en.wikipedia.org/wiki/Spaced_repetition) that's all about listening and speaking skills. We teach vocabulary using fully-formed sentences, not just boring word/definition pairs. KoalaSRS captures your voice input using speech-to-text and uses the super-smart GPT-3 for human-like test assessments and corrections. That means that the app is clever enough to mark your answers as "close enough" and can even give you optional feedback about _why_ you were wrong (Called "coaching"- UI is not built yet). It can explain sentences that don't make sense or have unknown vocabulary. 🧠

Expand All @@ -24,6 +21,15 @@ The app started as a command line app while I experimented with different quiz s
- [Costs (April 2023)](#costs-april-2023)
- [Better Name Needed](#better-name-needed)

## Demo

[Watch a quick YouTube demo where I foolishly say "들고 싶어요" instead of "듣고 싶어요"](https://youtu.be/XJsDDZQp2oo)

<p align="center">
<img src="./screenshot.jpg" alt="The KoalaSRS Logo (for now)"/>
</p>


## Features 💡

KoalaSRS rocks a minimal GUI because the focus is on what you can _hear_, not what you can see. 🎧
Expand Down
2 changes: 1 addition & 1 deletion server/routers/_app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { draw } from "radash";
import { z } from "zod";
import { procedure, router } from "../trpc";

const PROMPT_CONFIG = { best_of: 1, temperature: 0.2 };
const PROMPT_CONFIG = { best_of: 2, temperature: 0.4 };

const apiKey = process.env.OPENAI_API_KEY;

Expand Down

0 comments on commit c0fade9

Please sign in to comment.