generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (87 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
97 lines (87 loc) · 2.01 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# spell-checker:disable
[build-system]
requires = ["setuptools>=80.0.0", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-optimizer"
dynamic = ["version"]
description = "Oracle AI Optimizer and Toolkit"
requires-python = ">=3.11"
license = "UPL-1.0"
authors = [
{name = "Oracle", email = "obaas_ww@oracle.com"}
]
# Common dependencies that are always needed
dependencies = [
"langchain-core==1.2.14",
"httpx==0.28.1",
"oracledb~=3.1",
"plotly==6.5.2",
]
[project.optional-dependencies]
# Server component dependencies
server = [
"bokeh==3.8.2",
"evaluate==0.4.6",
"faiss-cpu==1.13.2",
"fastapi==0.129.0",
"fastmcp==2.14.5",
"giskard==2.19.1",
#"langchain-aimlapi==0.1.0",
"langchain-cohere==0.5.0",
"langchain-community==0.4.1",
"langchain-fireworks==1.1.0",
"langchain-google-genai==4.2.1",
"langchain-ibm==1.0.4",
"langchain-mcp-adapters==0.2.1",
"langchain-mistralai==1.1.1",
"langchain-nomic==1.0.1",
"langchain-oci==0.2.4",
"langchain-ollama==1.0.1",
"langchain-openai==1.1.10",
#"langchain-together==0.3.1",
"langgraph==1.0.9",
"litellm==1.81.13",
"llama-index==0.14.14",
"lxml==6.0.2",
"matplotlib==3.10.8",
"oci~=2.0",
"psutil==7.2.2",
"python-multipart==0.0.22",
"torch==2.10.0",
"umap-learn==0.5.11",
"uvicorn==0.41.0",
]
# GUI component dependencies
client = [
"streamlit==1.54.0",
]
# Test dependencies
test = [
"docker",
"mypy",
"types-psutil",
"pandas-stubs",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"types-jsonschema",
"yamllint"
]
# All-in-one installation (server + client)
all = [
"ai-optimizer[server]",
"ai-optimizer[client]",
]
# All-in-one with tests
all-test = [
"ai-optimizer[server]",
"ai-optimizer[client]",
"ai-optimizer[test]",
]
[tool.setuptools]
packages = ["src.server", "src.client", "src.common"]
[tool.setuptools_scm]
root = "."
fallback_version = "0.0.0"