Skip to content

Commit 43b0d68

Browse files
authored
Update main.py
Typo fix change single quotes to double quotes for docstring
1 parent d3d930f commit 43b0d68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'''
1+
"""
22
Name
33
main.py
44
@@ -17,11 +17,11 @@
1717
python main.py
1818
1919
Output
20-
The output of the task is written to a file called "research_result.txt".'''
20+
The output of the task is written to a file called "research_result.txt"."""
2121

2222
# Import required libraries - make sure the crewai and langchain_community packages are installed via pip
2323
import os
24-
from crewai import Agent, Crew, Process, TAsk
24+
from crewai import Agent, Crew, Process, Task
2525

2626
os.environ['OPENAI_API_BASE']='http://localhost:11434/v1'
2727
os.environ['OPENAI_API_KEY']='sk-111111111111111111111111111111111111111111111111'

0 commit comments

Comments
 (0)