48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "graph_of_thoughts"
|
|
version = "0.0.3"
|
|
authors = [
|
|
{ name="Maciej Besta", email="maciej.besta@inf.ethz.ch" },
|
|
{ name="Nils Blach", email="nils.blach@inf.ethz.ch" },
|
|
{ name="Ales Kubicek", email="akubicek@student.ethz.ch" },
|
|
{ name="Robert Gerstenberger", email="gerstenberger.robert@gmail.com" },
|
|
]
|
|
description = "Python package for Graph of Thoughts that enables solving elaborate problems with Large Language Models"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"backoff>=2.2.1,<3.0.0",
|
|
"openai>=1.0.0,<2.0.0",
|
|
"pyyaml>=6.0.1,<7.0.0",
|
|
"matplotlib>=3.7.1,<4.0.0",
|
|
"numpy>=1.24.3,<2.0.0",
|
|
"pandas>=2.0.3,<3.0.0",
|
|
"sympy>=1.12,<2.0",
|
|
"torch>=2.0.1,<3.0.0",
|
|
"transformers>=4.31.0,<5.0.0",
|
|
"accelerate>=0.21.0,<1.0.0",
|
|
"bitsandbytes>=0.41.0,<1.0.0",
|
|
"scipy>=1.10.1,<2.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
api = [
|
|
"fastapi>=0.109.0,<1.0.0",
|
|
"uvicorn[standard]>=0.27.0,<1.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/spcl/graph-of-thoughts"
|
|
|
|
[project.scripts]
|
|
got-openrouter-api = "graph_of_thoughts.api.app:run"
|