gperdrizet commited on
Commit
2db495f
·
verified ·
1 Parent(s): b07041b

Added Pandas to agent's authorized imports

Browse files
Files changed (1) hide show
  1. functions/writer_agent.py +1 -1
functions/writer_agent.py CHANGED
@@ -30,7 +30,7 @@ def write_resume(content: str, user_instructions: str = None, job_summary: str =
30
  agent = CodeAgent(
31
  model=AGENT_MODEL,
32
  tools=[],
33
- additional_authorized_imports=['json'],
34
  name="writer_agent",
35
  verbosity_level=5,
36
  max_steps=20,
 
30
  agent = CodeAgent(
31
  model=AGENT_MODEL,
32
  tools=[],
33
+ additional_authorized_imports=['json', 'pandas'],
34
  name="writer_agent",
35
  verbosity_level=5,
36
  max_steps=20,