We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776f374 commit 979a26fCopy full SHA for 979a26f
src/examples/crewai_example/simple_agent/main.py
@@ -1,10 +1,6 @@
1
-import sys
2
-
3
-sys.path.insert(0, '/Users/karthikkalyanaraman/work/langtrace/langtrace-python-sdk/src')
4
5
from crewai import Crew
6
-from agents import PoetryAgents
7
-from tasks import PoetryTasks
+from .agents import PoetryAgents
+from .tasks import PoetryTasks
8
from langtrace_python_sdk import langtrace
9
from dotenv import load_dotenv
10
@@ -30,6 +26,7 @@ def run(self):
30
26
31
27
32
28
# This is the main function that you will use to run your custom crew.
29
+# You can run this file using `python -m src.examples.crewai_example.simple_agent.main`
33
if __name__ == "__main__":
34
print("## Welcome to Poetry Crew")
35
print("-------------------------------")
0 commit comments