forked from stoyan-stoyanov/llmflows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 706 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (27 loc) · 706 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "llmflows"
version = "0.0.12"
authors = [
{ name="Stoyan Stoyanov"},
]
description = "LLMFlows - Simple, Explicit and Transparent LLM Apps"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp",
"openai==0.27.4",
"tiktoken==0.3.3",
"pinecone-client==2.2.1",
"urllib3==1.26.15"
]
[project.urls]
"Homepage" = "https://github.com/stoyan-stoyanov/llmflows"
"github" = "https://github.com/stoyan-stoyanov/llmflows"