File size: 526 Bytes
f3f99ec
9eb0b4e
4ad7a82
 
f3f99ec
 
 
 
 
e4fabe5
f3f99ec
 
 
 
 
1a74bcb
 
f3f99ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from crewai import Agent
from llms.gpt import llm
from workflows.tools.helpers import streamlit_callback
from workflows.tools.scrape_website import scrape_tool

curiosity_catalyst = Agent(
  role="Curiosity Catalyst",
  goal="To pique the user's curiosity to read the article.",
  verbose=True,
  tools=[scrape_tool],
  backstory=(
    "As a Curiosity Catalyst, you know exactly how to pique the user's curiosity "
    "for reading the articles."
  ),
  allow_delegation=False,
  llm=llm,
  step_callback=streamlit_callback
)