From 71d1e8e0bd4eca1d649752656226a49db78ef7ae Mon Sep 17 00:00:00 2001 From: Viren Baraiya Date: Tue, 16 Jan 2024 16:55:31 -0800 Subject: [PATCH] Create README.md --- examples/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 examples/README.md diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 00000000..6615e231 --- /dev/null +++ b/examples/README.md @@ -0,0 +1,23 @@ +# Running Examples + +### Setup SDK +```shell +python3 -m pip install conductor-python +``` +### Add environment variables pointing to the conductor server + +```shell +export CONDUCTOR_SERVER_URL=http://play.orkes.io/api +export CONDUCTOR_AUTH_KEY=YOUR_AUTH_KEY +export CONDUCTOR_AUTH_SECRET=YOUR_AUTH_SECRET +``` + +#### To run the examples with AI orchestration, export keys for OpenAI and Pinecone +```shell +export PINECONE_API_KEY= +export PINECONE_ENV= +export PINECONE_PROJECT= + +export OPENAI_API_KEY= +``` +