1 Star 0 Fork 0

gjd8798/phidata

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
Ashpreet Bedi 提交于 2024-06-01 16:38 . v2.4.18
[project]
name = "phidata"
version = "2.4.18"
description = "Memory, knowledge and tools for LLMs."
requires-python = ">=3.7"
readme = "README.md"
authors = [
{name = "Ashpreet Bedi", email = "ashpreet@phidata.com"}
]
dependencies = [
"gitpython",
"httpx",
"pydantic",
"pydantic-settings",
"python-dotenv",
"pyyaml",
"rich",
"tomli",
"typer",
"typing-extensions",
]
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"ruff",
"types-pyyaml"
]
docker = [
"docker"
]
aws = [
"docker",
"boto3"
]
k8s = [
"docker",
"kubernetes"
]
[project.scripts]
phi = "phi.cli.entrypoint:phi_cli"
[project.urls]
homepage = "https://phidata.com"
documentation = "https://docs.phidata.com"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["phi*"]
[tool.setuptools.package-data]
phi = ["py.typed"]
[tool.pytest.ini_options]
testpaths = "tests"
[tool.ruff]
line-length = 120
exclude = ["phienv*", "aienv*"]
# Ignore `F401` (import violations) in all `__init__.py` files
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"phi/k8s/app/traefik/crds.py" = ["E501"]
[tool.mypy]
check_untyped_defs = true
no_implicit_optional = true
warn_unused_configs = true
plugins = ["pydantic.mypy"]
exclude = ["phienv*", "aienv*", "scratch*", "wip*", "tmp*", "cookbook/examples/*", "phi/assistant/openai/*"]
[[tool.mypy.overrides]]
module = [
"altair.*",
"arxiv.*",
"anthropic.*",
"apify_client.*",
"boto3.*",
"botocore.*",
"bs4.*",
"cohere.*",
"docker.*",
"duckdb.*",
"exa_py.*",
"firecrawl.*",
"duckduckgo_search.*",
"groq.*",
"kubernetes.*",
"lancedb.*",
"langchain.*",
"langchain_core.*",
"llama_index.*",
"mistralai.*",
"newspaper.*",
"nest_asyncio.*",
"numpy.*",
"ollama.*",
"openai.*",
"openbb.*",
"pandas.*",
"pinecone.*",
"pyarrow.*",
"pgvector.*",
"psycopg.*",
"psycopg2.*",
"pypdf.*",
"qdrant_client.*",
"rapidocr_onnxruntime.*",
"requests.*",
"simplejson.*",
"serpapi.*",
"setuptools.*",
"sqlalchemy.*",
"streamlit.*",
"tavily.*",
"textract.*",
"vertexai.*",
"voyageai.*",
"wikipedia.*",
"yfinance.*",
"youtube_transcript_api.*",
]
ignore_missing_imports = true
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guojd/phidata.git
git@gitee.com:guojd/phidata.git
guojd
phidata
phidata
main

搜索帮助