From ff0ddac1e0eb80aa39e486a89544a37047499b86 Mon Sep 17 00:00:00 2001 From: John Pruitt Date: Mon, 8 Jul 2024 09:16:23 -0500 Subject: [PATCH] Add new env vars to DEVELOPMENT.md --- DEVELOPMENT.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 85ea43eec..8486f709b 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -103,8 +103,12 @@ The [tests](./tests) directory contains unit tests in psql scripts. The 1. Create a .env file to store environment variables needed for testing: - ENABLE_OPENAI_TESTS - a [boolean](https://www.postgresql.org/docs/current/app-psql.html#PSQL-METACOMMAND-IF) flag to enable/disable OpenAI unit tests - ENABLE_OLLAMA_TESTS - a [boolean](https://www.postgresql.org/docs/current/app-psql.html#PSQL-METACOMMAND-IF) flag to enable/disable Ollama unit tests + - ENABLE_ANTHROPIC_TESTS - a [boolean](https://www.postgresql.org/docs/current/app-psql.html#PSQL-METACOMMAND-IF) flag to enable/disable Anthropic unit tests + - ENABLE_COHERE_TESTS - a [boolean](https://www.postgresql.org/docs/current/app-psql.html#PSQL-METACOMMAND-IF) flag to enable/disable Cohere unit tests - OPENAI_API_KEY - an [OpenAI API Key](https://platform.openai.com/api-keys) to use for OpenAI unit testing - OLLAMA_HOST - the URL to the Ollama instance to use for testing (e.g. `http://host.docker.internal:11434`) + - ANTHROPIC_API_KEY - an [Anthropic API Key](https://docs.anthropic.com/en/docs/quickstart#set-your-api-key) to use for Anthropic unit testing + - COHERE_API_KEY - a [Cohere API Key](https://docs.cohere.com/docs/rate-limits) to use for Cohere unit testing 2. Run the tests