-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.33 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
[tool.poetry]
name = "pixie-examples"
packages = [
{ include = "examples" }
]
version = "0.2.16"
description = "examples for using Pixie"
authors = ["Yiou Li <yol@gopixie.ai>"]
license = "MIT"
readme = "README.md"
[tool.poetry.urls]
Homepage = "https://gopixie.ai/?url=https%3A%2F%2Fdemo.yiouli.us%2Fgraphql"
Repository = "https://github.com/yiouli/pixie-examples"
Documentation = "https://yiouli.github.io/pixie-sdk-py/"
Issues = "https://github.com/yiouli/pixie-examples/issues"
Changelog = "https://github.com/yiouli/pixie-examples/commits/main/"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
pydantic-ai-slim = "^1.39.0"
pydantic = {version = "^2.7.4", extras = []}
openai-agents = "^0.6.5"
pymarkdownlnt = "^0.9.34"
langchain = "^1.2.3"
langchain-openai = "^1.1.7"
langgraph = "^1.0.5"
langchain-text-splitters = "^1.1.0"
beautifulsoup4 = "^4.14.3"
lxml = "^6.0.2"
requests = "^2.32.5"
sqlalchemy = "^2.0.45"
openinference-instrumentation-openai-agents = "^1.4.0"
openinference-instrumentation-google-adk = "^0.1.8"
openinference-instrumentation-crewai = "^0.1.17"
openinference-instrumentation-dspy = "^0.1.33"
numpy = "^2.4.1"
pixie-sdk = "^0.2.16"
piccolo-admin = "^1.12.0"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools-scm>=8.0"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools_scm]
write_to = "examples/_version.py"