Skip to content

Commit 5d678b1

Browse files
authored
Update README.md
1 parent 95886c2 commit 5d678b1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,30 @@ python -m venv venv
3232

3333
2. Activate the virtual environment:
3434

35-
#### On Windows
35+
##### On Windows
3636
```
3737
./venv/Scripts/activate
3838
```
39-
#### On Unix or Linux
39+
##### On Unix or Linux
4040
```
4141
source venv/bin/activate
4242
```
4343

44-
### Install Dependencies
44+
#### Install Dependencies
4545
3. With your virtual environment activated, install the required dependencies using the following command:
4646

4747
```
4848
pip install -r requirements.txt
4949
```
5050

51-
### Deactivate the Virtual Environment
51+
#### Deactivate the Virtual Environment
5252
4. After installing the dependencies, you can deactivate the virtual environment:
5353

5454
```
5555
deactivate
5656
```
5757

58-
### Set up Anthropic API Key
58+
#### Set up Anthropic API Key
5959
Ensure you have an Anthropic API key to access the Claude LLM. You can obtain an API key from the [Anthropic Console](https://console.anthropic.com/dashboard).
6060

6161
5. Create a .env file in the project root directory and add the following line, replacing your_api_key with your actual API key:
@@ -64,7 +64,7 @@ Ensure you have an Anthropic API key to access the Claude LLM. You can obtain an
6464
ANTHROPIC_API_KEY=your_api_key
6565
```
6666

67-
### Run the Application
67+
#### Run the Application
6868
6. Run the following script to start the Chainlit server:
6969
```
7070
chainlit run app.py -w

0 commit comments

Comments
 (0)