-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 996 Bytes
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
[project]
name = "Foo"
version = "0.1.3"
description = "AI agent for An agent that can learn any task"
authors = ["Patrick Barker <patrickbarkerco@gmail.com>"]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"sqlalchemy>=2.0.27",
"pydantic>=2.6.3",
"requests>=2.31.0",
"fastapi[all]>=0.109",
"json-repair>=0.30.2",
"openai>=1.59.3",
"uvicorn>=0.34.2",
"surfkit==0.1.427",
"typer>=0.9.4",
"orign==0.2.143",
"langchain-community>=0.3.21",
"huggingface-hub>=0.30.2",
]
[dependency-groups]
dev = [
"flake8>=7.0.0",
"black>=24.2.0",
"pytest>=8.0.2",
"ipykernel>=6.29.3",
"pytest-env>=1.1.3",
"cowpilot>=0.1.0",
]
[tool.pyright]
reportUnknownParameterType = false
reportMissingTypeArgument = false
reportUnknownMemberType = false
reportUnknownVariableType = false
reportUnknownArgumentType = false
reportPrivateUsage = false
reportUntypedFunctionDecorator = false
reportUntypedBaseClass = false