Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from autogen import ConversableAgent, UserProxyAgent, config_list_from_json, register_function

agentops.init()
agentops.init(default_tags=['autogen', 'agentstack'])


def main():
Expand Down Expand Up @@ -59,4 +59,4 @@ def main():


if __name__ == "__main__":
main()
main()
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dotenv import load_dotenv
load_dotenv()

agentops.init()
agentops.init(default_tags=['crewai', 'agentstack'])


def run():
Expand Down
2 changes: 1 addition & 1 deletion examples/howards_agent/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dotenv import load_dotenv
load_dotenv()

agentops.init()
agentops.init(default_tags=['howards_agent', 'agentstack'])

# This main file is intended to be a way for your to run your
# crew locally, so refrain from adding necessary logic into this file.
Expand Down
2 changes: 1 addition & 1 deletion examples/job_posting/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dotenv import load_dotenv
load_dotenv()

agentops.init()
agentops.init(default_tags=['job_posting', 'agentstack'])

inputs = {
'company_domain': 'https://agen.cy',
Expand Down
2 changes: 1 addition & 1 deletion examples/stock_analysis/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from dotenv import load_dotenv
load_dotenv()

agentops.init()
agentops.init(default_tags=['stock_analysis', 'agentstack'])

# This main file is intended to be a way for your to run your
# crew locally, so refrain from adding necessary logic into this file.
Expand Down
2 changes: 1 addition & 1 deletion examples/trip_planner/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from crew import TripplannerCrew
import agentops

agentops.init()
agentops.init(default_tags=['trip_planner', 'agentstack'])

# This main file is intended to be a way for your to run your
# crew locally, so refrain from adding necessary logic into this file.
Expand Down
2 changes: 1 addition & 1 deletion examples/web_researcher/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from dotenv import load_dotenv
load_dotenv()

agentops.init()
agentops.init(default_tags=['web_researcher', 'agentstack'])


def run(inputs: Optional[dict] = None):
Expand Down
Loading