File size: 1,470 Bytes
13c6cad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "kallam"
version = "0.1.1"
description = "KaLLaM: Multi-agent chatbot with orchestration, LLM evaluation, and SQLite persistence"
authors = [
  { name = "Koalar" }
]
readme = "README.md"
requires-python = ">=3.10"

dependencies = [
  "python-dotenv>=1.0.1",         # for load_dotenv
  "strands-agents>=0.1.0",        # strands Agent + BedrockModel
  "strands-agents-tools",
  "strands-agents-builder",
  "strands-agents[openai]>=1.0.0",
  "google-genai",                 # google cloud api
  "openai>=1.40.0",
  "boto3>=1.34.0",                # AWS SDK (brings in botocore)
  "numpy>=1.26.0",                # numerical utils
  "sentence-transformers>=2.6.0", # embeddings
  "transformers>=4.40.0",         # Hugging Face transformers
  "gradio>=4.0.0",                # UI
  "pyngrok==7.3.0",               # Hosting gradio interface
  "matplotlib"
]

[project.optional-dependencies]
dev = [
  "pytest>=7.0",                  # testing
  "pytest-cov>=4.0",              # coverage reports
  "ruff>=0.4.0",                  # linting
  "mypy>=1.10.0",                 # static typing
]

[tool.setuptools]
package-dir = {"" = "src"}

[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"

[tool.ruff]
line-length = 100
target-version = "py310"

[tool.mypy]
python_version = "3.10"
strict = true