From 7922f5aa91581a7bebe1758ffc22fc6e062fbed6 Mon Sep 17 00:00:00 2001 From: Cassie Breviu <46505951+cassiebreviu@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:27:52 -0500 Subject: [PATCH] fix orchestrator and typeo (#160) --- src/api/agents/product/product.prompty | 2 +- src/api/orchestrator.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/agents/product/product.prompty b/src/api/agents/product/product.prompty index 59ecbd20..7ee5394b 100644 --- a/src/api/agents/product/product.prompty +++ b/src/api/agents/product/product.prompty @@ -22,7 +22,7 @@ search index return the most relevant information for a writer to use when writing marketing articles. # Context -Use the follow contex to provide a set of specialized queries to the search index: +Use the follow context to provide a set of specialized queries to the search index: {{context}} diff --git a/src/api/orchestrator.py b/src/api/orchestrator.py index 802502ed..392029ff 100644 --- a/src/api/orchestrator.py +++ b/src/api/orchestrator.py @@ -171,5 +171,5 @@ def test_create_article(): if __name__ == "__main__": from tracing import init_tracing - tracer = init_tracing(local_tracing=True) + tracer = init_tracing(remote_tracing=True, local_tracing=True) test_create_article()