alamin655 commited on
Commit
6920ee1
·
1 Parent(s): 09b8dd9

Upload 2 files

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +31 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "conversant"
3
+ version = "0.2.5"
4
+ repository = "https://github.com/cohere-ai/sandbox-conversant-lib"
5
+ description = "Conversational AI tooling"
6
+ readme = "README.md"
7
+ authors = ["Cohere ConvAI <[email protected]>"]
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.8,!=3.9.7"
11
+ cohere = "^3.0"
12
+ toml = "^0.10.2"
13
+ pydantic = "^1.10.2"
14
+ emoji = "1.7.0"
15
+ emojificate = "^0.6.0"
16
+ streamlit-ace = "^0.1.1"
17
+ streamlit-talk = "^0.2.1"
18
+
19
+ [tool.poetry.group.dev.dependencies]
20
+ pytest = "^7.1.2"
21
+ streamlit = "^1.18.1"
22
+ black = "^22.10.0"
23
+ pre-commit = "^2.20.0"
24
+ pdoc = "^12.1.0"
25
+ ruff = "^0.0.94"
26
+ isort = "^5.10.1"
27
+ autoflake = "^1.7.7"
28
+
29
+ [build-system]
30
+ requires = ["poetry-core>=1.3.0"]
31
+ build-backend = "poetry.core.masonry.api"