CineAI commited on
Commit
d14791b
1 Parent(s): 4f679ad

Update llm/llm.py

Browse files
Files changed (1) hide show
  1. llm/llm.py +1 -1
llm/llm.py CHANGED
@@ -14,7 +14,7 @@ class LLM_chain:
14
 
15
  def __read_yaml(self):
16
  try:
17
- with open("prompts.yaml", "r") as file:
18
  data = yaml.safe_load(file)
19
  return data
20
  except Exception as e:
 
14
 
15
  def __read_yaml(self):
16
  try:
17
+ with open('./prompts.yaml', 'r') as file:
18
  data = yaml.safe_load(file)
19
  return data
20
  except Exception as e: