You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,30 +32,30 @@ python -m venv venv
32
32
33
33
2. Activate the virtual environment:
34
34
35
-
#### On Windows
35
+
#####On Windows
36
36
```
37
37
./venv/Scripts/activate
38
38
```
39
-
#### On Unix or Linux
39
+
#####On Unix or Linux
40
40
```
41
41
source venv/bin/activate
42
42
```
43
43
44
-
### Install Dependencies
44
+
####Install Dependencies
45
45
3. With your virtual environment activated, install the required dependencies using the following command:
46
46
47
47
```
48
48
pip install -r requirements.txt
49
49
```
50
50
51
-
### Deactivate the Virtual Environment
51
+
####Deactivate the Virtual Environment
52
52
4. After installing the dependencies, you can deactivate the virtual environment:
53
53
54
54
```
55
55
deactivate
56
56
```
57
57
58
-
### Set up Anthropic API Key
58
+
####Set up Anthropic API Key
59
59
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).
60
60
61
61
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
64
64
ANTHROPIC_API_KEY=your_api_key
65
65
```
66
66
67
-
### Run the Application
67
+
####Run the Application
68
68
6. Run the following script to start the Chainlit server:
0 commit comments