forked from kingjulio8238/Memary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (50 loc) · 1.42 KB
/
pyproject.toml
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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "memary"
version = "0.1.2"
authors = [
{ name="memary Labs", email="[email protected]" },
]
description = "Longterm Memory for Autonomous Agents"
readme = "README_hidden.md"
requires-python = ">=3.8, <=3.11.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"neo4j==5.17.0",
"python-dotenv==1.0.1",
"pyvis==0.3.2",
"streamlit==1.31.1",
"llama-index==0.10.11",
"llama-index-agent-openai==0.1.5",
"llama-index-core==0.10.12",
"llama-index-embeddings-openai==0.1.5",
"llama-index-graph-stores-nebula==0.1.2",
"llama-index-graph-stores-neo4j==0.1.1",
"llama-index-legacy==0.9.48",
"llama-index-llms-openai==0.1.5",
"llama-index-multi-modal-llms-openai==0.1.3",
"llama-index-program-openai==0.1.3",
"llama-index-question-gen-openai==0.1.2",
"llama-index-readers-file==0.1.4",
"langchain==0.1.12",
"langchain-openai==0.0.8",
"llama-index-llms-perplexity==0.1.3",
"llama-index-multi-modal-llms-ollama==0.1.3",
"llama-index-llms-ollama==0.1.2",
"pandas",
"geocoder",
"googlemaps",
"ansistrip",
"numpy",
]
[project.urls]
Homepage = "https://github.com/kingjulio8238/memary"
Issues = "https://github.com/kingjulio8238/memary/issues"