-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
27 lines (24 loc) · 1.14 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
[project]
name = "agentgraph"
version = "0.3"
authors = [
{ name="Brian Demsky", email="[email protected]" },
{ name="Simon Guo", email="[email protected]" },
{ name="Conan Truong", email="[email protected]" },
]
description = "A library for task-based parallel programming for Python. AgentGraph primarily targets AI software that integrates LLM queries (it contains language support generating LLM queries), but can also parallelize tasks that make calls into native code that drops the GIL. Supports LLM query memoization for fast, cheap debug cycles."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
keywords = ["LLM", "Task parallelism", "Nested task parallelism", "Large Language Models", "Query generation language"]
dependencies = ["asyncio","openai","jinja2","janus","tiktoken"]
[project.urls]
Homepage = "https://github.com/bdemsky/agentgraph"
Issues = "https://github.com/bdemsky/agentgraph/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"