Zachary Greathouse commited on
Commit
b3660ff
·
unverified ·
1 Parent(s): 5ed9749

Update README and .env.example to include mention openai for local dev setup (#21)

Browse files
Files changed (2) hide show
  1. .env.example +2 -4
  2. README.md +5 -2
.env.example CHANGED
@@ -1,9 +1,7 @@
1
  # Environment variables for local development ("dev" environment).
2
- # These values are loaded from the .env file when running locally.
3
- # In production ("prod" environment), environment variables must be set in the system
4
- # and will not be loaded from this file.
5
 
6
  # API Keys
7
  HUME_API_KEY=YOUR_HUME_API_KEY
8
  ANTHROPIC_API_KEY=YOUR_ANTHROPIC_API_KEY
9
- ELEVENLABS_API_KEY=YOUR_ELEVENLABS_API_KEY
 
 
1
  # Environment variables for local development ("dev" environment).
 
 
 
2
 
3
  # API Keys
4
  HUME_API_KEY=YOUR_HUME_API_KEY
5
  ANTHROPIC_API_KEY=YOUR_ANTHROPIC_API_KEY
6
+ ELEVENLABS_API_KEY=YOUR_ELEVENLABS_API_KEY
7
+ OPENAI_API_KEY=YOUR_OPENAI_API_KEY
README.md CHANGED
@@ -14,7 +14,9 @@ license: mit
14
  <img src="https://storage.googleapis.com/hume-public-logos/hume/hume-banner.png">
15
  <h1>Expressive TTS Arena</h1>
16
  <p>
17
- <strong> A web application for comparing and evaluating the expressiveness of different text-to-speech models </strong>
 
 
18
  </p>
19
  </div>
20
 
@@ -30,7 +32,7 @@ For support or to join the conversation, visit our [Discord](https://discord.com
30
  - [pip >=25.0](https://pypi.org/project/pip/)
31
  - [uv >=0.5.29](https://github.com/astral-sh/uv)
32
  - [Postgres](https://www.postgresql.org/download/)
33
- - API keys for Hume AI, Anthropic, and ElevenLabs
34
 
35
  ## Project Structure
36
 
@@ -101,6 +103,7 @@ Expressive TTS Arena/
101
  HUME_API_KEY=YOUR_HUME_API_KEY
102
  ANTHROPIC_API_KEY=YOUR_ANTHROPIC_API_KEY
103
  ELEVENLABS_API_KEY=YOUR_ELEVENLABS_API_KEY
 
104
  ```
105
 
106
  3. Run the application:
 
14
  <img src="https://storage.googleapis.com/hume-public-logos/hume/hume-banner.png">
15
  <h1>Expressive TTS Arena</h1>
16
  <p>
17
+ <strong>
18
+ A web application for comparing and evaluating the expressiveness of different text-to-speech models
19
+ </strong>
20
  </p>
21
  </div>
22
 
 
32
  - [pip >=25.0](https://pypi.org/project/pip/)
33
  - [uv >=0.5.29](https://github.com/astral-sh/uv)
34
  - [Postgres](https://www.postgresql.org/download/)
35
+ - API keys for Hume AI, Anthropic, OpenAI, and ElevenLabs
36
 
37
  ## Project Structure
38
 
 
103
  HUME_API_KEY=YOUR_HUME_API_KEY
104
  ANTHROPIC_API_KEY=YOUR_ANTHROPIC_API_KEY
105
  ELEVENLABS_API_KEY=YOUR_ELEVENLABS_API_KEY
106
+ OPENAI_API_KEY=YOUR_OPENAI_API_KEY
107
  ```
108
 
109
  3. Run the application: