Skip to content

Commit

Permalink
pydantic req
Browse files Browse the repository at this point in the history
  • Loading branch information
Kav-K committed Oct 21, 2023
1 parent fcb37d8 commit f7df2b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion detailed_guides/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ python3.9 -m pip install .
#### Copy the sample.env file into a regular .env file. `DEBUG_GUILD` and the ID for `ALLOWED_GUILDS` can be found by right-clicking your server and choosing "Copy ID". Similarly, `DEBUG_CHANNEL` can be found by right-clicking your debug channel.
```shell
cp sample.env .env
cp .env .env
```

#### The command below is used to edit the .env file and to put in your API keys. You can right click within the editor after running this command to paste. When you are done editing, press CTRL + X, and then type Y, to save.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ dependencies = [
"wolframalpha==5.0.0",
"nltk==3.8.1",
"replicate==0.8.1",
"tiktoken==0.4.0"
"tiktoken==0.4.0",
"pydantic==2.4.2"
]

dynamic = ["version"]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ wolframalpha==5.0.0
nltk==3.8.1
replicate==0.8.1
tiktoken==0.4.0
pydantic==2.4.2
1 change: 1 addition & 0 deletions requirements_base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ wolframalpha==5.0.0
nltk==3.8.1
replicate==0.8.1
tiktoken==0.4.0
pydantic==2.4.2

0 comments on commit f7df2b8

Please sign in to comment.