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.
swarms/example.py

32 lines
754 B

from tabnanny import verbose
from click import prompt
from langchain import LLMChain
from swarms.models import OpenAIChat
from swarms import Worker
from swarms.prompts import PRODUCT_AGENT_PROMPT
from swarms.models.bing_chat import BingChat
# api_key = ""
# llm = OpenAIChat(
# openai_api_key=api_key,
# temperature=0.5,
# )
llm = BingChat(cookies_path="./cookies.json")
# llm = LLMChain(llm=bing.to_dict(), prompt=prompt, verbose=verbose)
node = Worker(
llm=llm,
ai_name="Optimus Prime",
ai_role=PRODUCT_AGENT_PROMPT,
external_tools=None,
human_in_the_loop=False,
temperature=0.5,
use_openai=False
)
task = "Create an entirely new board game around riddles for physics"
response = node.run(task)
print(response)