Spaces:
Runtime error
Runtime error
Remove unused dependencies
Browse files- README.MD +12 -0
- pyproject.toml +5 -3
README.MD
CHANGED
@@ -43,6 +43,18 @@
|
|
43 |
|
44 |
Just run the Docker image. 😉
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
### For Development
|
47 |
|
48 |
Development usually requires rapid iteration. That means a change in the code ought to be reflected as soon as possible in the behavior of the application.
|
|
|
43 |
|
44 |
Just run the Docker image. 😉
|
45 |
|
46 |
+
Build it with:
|
47 |
+
|
48 |
+
```sh
|
49 |
+
docker build . -t ctp-slack-bot
|
50 |
+
```
|
51 |
+
|
52 |
+
Run it with:
|
53 |
+
|
54 |
+
```sh
|
55 |
+
docker run --env-file=.env -p 8000:8000 --name my-ctp-slack-bot-instance ctp-slack-bot
|
56 |
+
```
|
57 |
+
|
58 |
### For Development
|
59 |
|
60 |
Development usually requires rapid iteration. That means a change in the code ought to be reflected as soon as possible in the behavior of the application.
|
pyproject.toml
CHANGED
@@ -33,10 +33,12 @@ dependencies = [
|
|
33 |
"apscheduler>=3.11.0",
|
34 |
"slack-sdk>=3.35.0",
|
35 |
"pymongo>=4.11.3 ",
|
|
|
36 |
"webvtt-py>=0.5.1",
|
37 |
-
"
|
38 |
-
"
|
39 |
-
"
|
|
|
40 |
]
|
41 |
|
42 |
[project.optional-dependencies]
|
|
|
33 |
"apscheduler>=3.11.0",
|
34 |
"slack-sdk>=3.35.0",
|
35 |
"pymongo>=4.11.3 ",
|
36 |
+
"numpy>=2.2.4",
|
37 |
"webvtt-py>=0.5.1",
|
38 |
+
"openai>=1.70.0",
|
39 |
+
# "langchain>=0.3.23",
|
40 |
+
# "transformers>=4.51.0",
|
41 |
+
# "torch>=2.6.0",
|
42 |
]
|
43 |
|
44 |
[project.optional-dependencies]
|