File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " pip" # See documentation for possible values
4
+ directory : " /" # Location of package manifests
5
+ schedule :
6
+ interval : " daily"
7
+ target-branch : " staging"
Original file line number Diff line number Diff line change
1
+ import os
1
2
import logging
2
3
3
4
from graphrag_sdk .models .openai import OpenAiGenerativeModel
@@ -201,6 +202,10 @@ def _create_kg_agent(repo_name: str):
201
202
name = repo_name ,
202
203
ontology = ontology ,
203
204
model_config = KnowledgeGraphModelConfig .with_model (openapi_model ),
205
+ host = os .getenv ('FALKORDB_HOST' , 'localhost' ),
206
+ port = os .getenv ('FALKORDB_PORT' , 6379 ),
207
+ username = os .getenv ('FALKORDB_USERNAME' , None ),
208
+ password = os .getenv ('FALKORDB_PASSWORD' , None ),
204
209
)
205
210
206
211
return code_graph_kg .chat_session ()
You can’t perform that action at this time.
0 commit comments