Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 430 Bytes

installation.md

File metadata and controls

23 lines (16 loc) · 430 Bytes

Installation

Installation through pip

To install ActionWeaver run:

pip install actionweaver

Environment setup

ActionWeaver requires an OpenAI account and API key. Once we have a key we'll want to set it as an environment variable by running:

export OPENAI_API_KEY="..."

Or pass the key in OpenAI directly via the api:

import openai
openai.api_key = os.getenv("OPENAI_API_KEY")