Skip to content

Commit 1290d0f

Browse files
authored
load env in helper file (#196)
* load env in helper file * bump version
1 parent b217d1e commit 1290d0f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

graphiti_core/helpers.py

+3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@
1818
from datetime import datetime
1919

2020
import numpy as np
21+
from dotenv import load_dotenv
2122
from neo4j import time as neo4j_time
2223

24+
load_dotenv()
25+
2326
DEFAULT_DATABASE = os.getenv('DEFAULT_DATABASE', None)
2427

2528

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphiti-core"
3-
version = "0.3.14"
3+
version = "0.3.15"
44
description = "A temporal graph building library"
55
authors = [
66
"Paul Paliychuk <[email protected]>",

0 commit comments

Comments
 (0)