yetessam commited on
Commit
bedeb06
·
verified ·
1 Parent(s): 13ef6a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -19,9 +19,7 @@ from prompts import load_prompts
19
  def initialize_agent(endpoint_uri: str):
20
 
21
  # Load prompts
22
- with open("config/prompts.yaml", 'r') as stream:
23
- custom_prompts = yaml.safe_load(stream)
24
-
25
  combined_tools = load_tools() ## from the tools folder (don't remove final answer)
26
 
27
  """Initialize and configure the CodeAgent"""
 
19
  def initialize_agent(endpoint_uri: str):
20
 
21
  # Load prompts
22
+ custom_prompts = load_prompts()
 
 
23
  combined_tools = load_tools() ## from the tools folder (don't remove final answer)
24
 
25
  """Initialize and configure the CodeAgent"""