Skip to content

Commit 3957813

Browse files
authored
Merge pull request #67 from daily-co/add-dot-env-template
add dot-env.template
2 parents 91dbfef + 1000ca5 commit 3957813

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Build things like this:
77

88

99

10-
**`dailyai` started as a toolkit for implementing generative AI voice bots.** Things like personal coaches, meeting assistants, story-telling toys for kids, customer support bots, and snarky social companions.
10+
**`dailyai` started as a toolkit for implementing generative AI voice bots.** Things like personal coaches, meeting assistants, story-telling toys for kids, customer support bots, and snarky social companions.
1111

1212

1313
In 2023 a *lot* of us got excited about the possibility of having open-ended conversations with LLMs. It became clear pretty quickly that we were all solving the same [low-level problems](https://www.daily.co/blog/how-to-talk-to-an-llm-with-your-voice/):
1414
- low-latency, reliable audio transport
15-
- echo cancellation
15+
- echo cancellation
1616
- phrase endpointing (knowing when the bot should respond to human speech)
1717
- interruptibility
1818
- writing clean code to stream data through "pipelines" of speech-to-text, LLM inference, and text-to-speech models
@@ -55,11 +55,7 @@ Today, the easiest way to get started with `dailyai` is to use [Daily](https://w
5555
pip install dailyai
5656
5757
# set up an .env file with API keys
58-
# for example
59-
OPENAI_API_KEY=...
60-
ELEVENLABS_API_KEY=...
61-
ELEVENLABS_VOICE_ID=...
62-
DAILY_SAMPLE_ROOM_URL=https://...
58+
cp dot-env.template .env
6359
6460
# sign up for a free Daily account, if you don't already have one, and
6561
# join the Daily room URL directly from a browser tab, then run one of the
@@ -103,4 +99,3 @@ If you want to use this package from another directory, you can run:
10399
```
104100
pip install path_to_this_repo
105101
```
106-

dot-env.template

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
OPENAI_API_KEY=...
2+
ELEVENLABS_API_KEY=...
3+
ELEVENLABS_VOICE_ID=...
4+
DAILY_API_KEY=...
5+
DAILY_SAMPLE_ROOM_URL=https://...

0 commit comments

Comments
 (0)