You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
514 B
20 lines
514 B
from swarms.models.bing_chat import BingChat
|
|
from swarms.workers.worker import Worker
|
|
from swarms.tools.autogpt import EdgeGPTTool, tool
|
|
from swarms.models import OpenAIChat
|
|
import os
|
|
|
|
api_key = os.getenv("OPENAI_API_KEY")
|
|
|
|
# Initialize the EdgeGPTModel
|
|
edgegpt = BingChat()
|
|
|
|
|
|
# Initialize the Worker with the custom tool
|
|
worker = Worker(llm=llm, ai_name="EdgeGPT Worker", external_tools=[edgegpt])
|
|
|
|
# Use the worker to process a task
|
|
task = "Hello, my name is ChatGPT"
|
|
response = worker.run(task)
|
|
print(response)
|