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.
|
import os
|
|
from swarms import OpenAIChat, Agent
|
|
from dotenv import load_dotenv
|
|
|
|
|
|
# Load environment variables
|
|
load_dotenv()
|
|
|
|
# Create a chat instance
|
|
llm = OpenAIChat(
|
|
api_key=os.getenv("OPENAI_API_KEY"),
|
|
)
|
|
|
|
# Create an agent
|
|
agent = Agent(
|
|
agent_name="GPT-3",
|
|
llm=llm,
|
|
)
|