File size: 997 Bytes
b3d3593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = []
test = [
    "pytest>=7.3.0",
    "pytest-cov>=4.0.0",
    "pytest-asyncio>=0.21.0",
    "aioresponses>=0.7.4",
    "responses>=0.23.1",
]
ide = [
    "setuptools>=67.6.1",
]

[tool.pdm.scripts]
hugginggpt = "python main.py"

[tool.pytest]
[tool.pytest.ini_options]
asyncio_mode = "auto"
norecursedirs = "tests/helpers"

[project]
name = "langchain-huggingGPT"
version = "0.1.0"
description = ""
authors = [
    {name = "camille-vanhoffelen", email = "camille-vanhoffelen@users.noreply.github.com"},
]
dependencies = [
    "click>=8.1.3",
    "python-dotenv>=1.0.0",
    "langchain>=0.0.137",
    "openai>=0.27.4",
    "huggingface-hub>=0.13.4",
    "tiktoken>=0.3.3",
    "diffusers>=0.15.1",
    "Pillow>=9.5.0",
    "pydub>=0.25.1",
    "aiohttp>=3.8.4",
    "aiodns>=3.0.0",
    "gradio>=3.32.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"