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.models import OpenAIChat
|
|
|
|
# Load doten
|
|
openai = OpenAIChat(
|
|
openai_api_key=os.getenv("OPENAI_API_KEY"), verbose=False
|
|
)
|
|
|
|
chat = openai("What are quantum fields?")
|
|
print(chat)
|