-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 948 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 948 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
30
31
[tool.poetry]
name = "optimizeai"
version = "1.0.0"
description = "OptimAI is a powerful Python module designed to optimize your code by analyzing its performance and providing actionable suggestions. It leverages a large language model (LLM) to give you detailed insights and recommendations based on the profiling data collected during the execution of your code."
authors = ["Vidhu Mathur <vidhumathur2002@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
langchain = "^0.2.3"
openai = "^1.33.0"
python-dotenv = "^1.0.1"
google = "^3.0.0"
huggingface = "^0.0.1"
huggingface-hub = "^0.23.3"
perfwatch = "^1.3.2"
py-context = "^0.3.1"
requests = "^2.32.3"
transformers = "^4.41.2"
google-generativeai = "^0.7.1"
dspy = "^0.1.5"
anthropic = "^0.28.1"
torch = "^2.3.1"
accelerate = "^0.31.0"
markdown2 = "^2.5.0"
reportlab = "^4.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"