tfrere commited on
Commit
ede321f
·
1 Parent(s): 66c8843
Files changed (2) hide show
  1. README.md +1 -0
  2. server/README.md +9 -0
README.md CHANGED
@@ -18,6 +18,7 @@ An interactive narrative game that generates unique stories in comic book form,
18
  - Python 3.10+
19
  - Poetry
20
  - Mistral API Key
 
21
 
22
  ### Start the Server
23
 
 
18
  - Python 3.10+
19
  - Poetry
20
  - Mistral API Key
21
+ - Hugging Face Endpoint URL
22
 
23
  ### Start the Server
24
 
server/README.md CHANGED
@@ -36,9 +36,18 @@ The server is built around several specialized AI generators:
36
  ```
37
 
38
  3. Configuration:
 
39
  ```bash
40
  cp .env.example .env
41
  # Add your Mistral API key to .env
 
 
 
 
 
 
 
 
42
  ```
43
 
44
  ## 🚀 Usage
 
36
  ```
37
 
38
  3. Configuration:
39
+
40
  ```bash
41
  cp .env.example .env
42
  # Add your Mistral API key to .env
43
+ # Add your Hugging Face endpoint URL to .env
44
+ ```
45
+
46
+ Required environment variables:
47
+
48
+ ```env
49
+ MISTRAL_API_KEY=your_mistral_api_key
50
+ HF_API_ENDPOINT=your_huggingface_endpoint_url
51
  ```
52
 
53
  ## 🚀 Usage