forked from wise-agents/wise-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (52 loc) · 1.41 KB
/
pyproject.toml
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
52
53
54
55
[project]
name = "wiseagents"
version = "0.0.1"
description = "Multi-agent framework"
authors = []
readme = "README.md"
requires-python = ">=3.8.1,<4.0"
dependencies = [
"langchain==0.2.16",
"langchain-community==0.2.16",
"langchain-huggingface==0.0.3",
"langchain-openai==0.1.7",
"langchain-postgres==0.0.9",
"neo4j==5.25",
"pydantic==2.7.4",
"sentence-transformers==3.0.1",
"streamlit==1.36.0",
"pyyaml==6.0.1",
"stomp.py==8.1.2",
"mkdocstrings-python",
"mkdocs",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-include-markdown-plugin",
"redis",
"gradio",
]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "CRITICAL"
log_cli_format = "%(asctime)s [%(levelname)s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_file = "pytest.log"
log_file_level = "DEBUG"
log_file_format = "%(asctime)s [%(levelname)s] %(message)s (%(filename)s:%(lineno)s)"
log_file_date_format = "%Y-%m-%d %H:%M:%S"
addopts = [
"--import-mode=importlib",
]
pythonpath = [
"src"
]
markers = [
"needsllm: The LMM is too big to run in GitHub Actions, so we need to disable tests requiring it there.",
"needsllama: Needs llama, and the model is too big for GitHub Actions.",
"needsqroq: Needs an API key for Groq to be able to run successfully.",
]