mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 14:50:16 +00:00
31 lines
728 B
TOML
31 lines
728 B
TOML
[project]
|
|
name = "simplemind"
|
|
version = "0.3.2"
|
|
description = "An experimental client for AI providers that intends to replace LangChain and LangGraph for most common use cases."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pydantic", "pydantic-settings", "instructor", "logfire"]
|
|
|
|
[project.optional-dependencies]
|
|
full = [
|
|
"openai",
|
|
"anthropic",
|
|
"groq",
|
|
"google-generativeai",
|
|
"botocore",
|
|
"boto3"
|
|
]
|
|
amazon = ["boto3", "botocore", "anthropic"]
|
|
anthropic = ["anthropic"]
|
|
gemini = ["google-generativeai", "jsonref"]
|
|
groq = ["groq"]
|
|
ollama = ["openai"]
|
|
openai = ["openai"]
|
|
xai = ["openai"]
|
|
deepseek = ["openai"]
|
|
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|