mirror of
https://github.com/coleam00/Archon.git
synced 2026-01-03 05:10:27 -05:00
19 lines
884 B
Plaintext
19 lines
884 B
Plaintext
# Get your Open AI API Key by following these instructions -
|
|
# https://help.openai.com/en/articles/4936850-where-do-i-find-my-openai-api-key
|
|
# You only need this environment variable set if you are using GPT (and not Ollama)
|
|
OPENAI_API_KEY=
|
|
|
|
# For the Supabase version (sample_supabase_agent.py), set your Supabase URL and Service Key.
|
|
# Get your SUPABASE_URL from the API section of your Supabase project settings -
|
|
# https://supabase.com/dashboard/project/<your project ID>/settings/api
|
|
SUPABASE_URL=
|
|
|
|
# Get your SUPABASE_SERVICE_KEY from the API section of your Supabase project settings -
|
|
# https://supabase.com/dashboard/project/<your project ID>/settings/api
|
|
# On this page it is called the service_role secret.
|
|
SUPABASE_SERVICE_KEY=
|
|
|
|
# The LLM you want to use from OpenAI. See the list of models here:
|
|
# https://platform.openai.com/docs/models
|
|
# Example: gpt-4o-mini
|
|
LLM_MODEL= |