Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -23,6 +23,7 @@ st.markdown(
|
|
23 |
st.markdown(
|
24 |
"The goal of this demo is to show how you can use the [CrewAI](https://crewai.co/) framework to create a blog editor agent that can help you edit your blog posts. The agent is composed of two agents: a researcher and an editor. The researcher is responsible for conducting research and fact-checking the information provided in the blog post. The editor is responsible for editing the blog post and making sure it is clear, coherent, and impactful."
|
25 |
)
|
|
|
26 |
st.markdown("Click on the icon 🖱️ Logs to see how the agents are making the decisions.")
|
27 |
|
28 |
# Retrieve API Key from Environment Variable
|
@@ -35,7 +36,6 @@ with st.sidebar:
|
|
35 |
OPENAI_API_KEY = st.text_input("API Key", type="password")
|
36 |
|
37 |
|
38 |
-
|
39 |
# Instantiate your tools: Search engine tool duckduckgo-search
|
40 |
search_tool = DuckDuckGoSearchRun()
|
41 |
|
|
|
23 |
st.markdown(
|
24 |
"The goal of this demo is to show how you can use the [CrewAI](https://crewai.co/) framework to create a blog editor agent that can help you edit your blog posts. The agent is composed of two agents: a researcher and an editor. The researcher is responsible for conducting research and fact-checking the information provided in the blog post. The editor is responsible for editing the blog post and making sure it is clear, coherent, and impactful."
|
25 |
)
|
26 |
+
st.write("")
|
27 |
st.markdown("Click on the icon 🖱️ Logs to see how the agents are making the decisions.")
|
28 |
|
29 |
# Retrieve API Key from Environment Variable
|
|
|
36 |
OPENAI_API_KEY = st.text_input("API Key", type="password")
|
37 |
|
38 |
|
|
|
39 |
# Instantiate your tools: Search engine tool duckduckgo-search
|
40 |
search_tool = DuckDuckGoSearchRun()
|
41 |
|