ZequnZ commited on
Commit
892bc52
1 Parent(s): f705b72

add poetry setup

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +21 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "chat-with-mistral-7b"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["ZequnZ <zequn.zhou007@gmail.com>"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+ packages = [{include = "chat_with_mistral_7b"}]
9
+
10
+ [tool.poetry.dependencies]
11
+ python = "^3.10"
12
+ gradio = "^4.13.0"
13
+ text-generation = "^0.6.1"
14
+
15
+
16
+ [tool.poetry.group.dev.dependencies]
17
+ black = "^23.12.1"
18
+
19
+ [build-system]
20
+ requires = ["poetry-core"]
21
+ build-backend = "poetry.core.masonry.api"