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.
|
from swarms.structs.workflow import Workflow
|
|
from swarms.models import OpenAIChat
|
|
import os
|
|
|
|
api_key = os.getenv("OPENAI_API_KEY")
|
|
org_id = os.getenv("OPENAI_ORG_ID")
|
|
|
|
llm = OpenAIChat(openai_api_key=api_key, openai_org_id=org_id)
|
|
|
|
|
|
workflow = Workflow(llm)
|