Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.01 KB

README.md

File metadata and controls

43 lines (31 loc) · 1.01 KB

LLMWorkflowGenerator

Dependencies Overview

Python 3
virtualenv

Environment Variables Overview

Key Description Default
OPENAI_KEY OpenAI API key for the chat completions endpoint -
MODEL LLM model name gpt-4o-mini

Environment Setup

virtualenv environment
source environment/bin/activate
pip3 install -r requirements.txt

Execution Setup

export OPENAI_KEY=...
export MODEL=gpt4-4o-mini

source environment/bin/activate

echo "Say hello world" | python3 main.py

Execution Examples

echo "Please send my car title to my insurance company" | python3 main.py
echo "Please tell me the current temperature" | python3 main.py
echo "Please play the song beat it by michael jackson" | python3 main.py
echo "Please say me all files in my home directory" | python3 main.py