diff --git a/infra/main.bicep b/infra/main.bicep index 0fe3f917..0a954bea 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -294,6 +294,7 @@ output AZURE_OPENAI_API_VERSION string = openAiApiVersion output AZURE_OPENAI_ENDPOINT string = ai.outputs.openAiEndpoint output AZURE_OPENAI_NAME string = ai.outputs.openAiName output AZURE_OPENAI_RESOURCE_GROUP string = resourceGroup.name +output AZURE_AI_PROJECT_NAME string = ai.outputs.projectName output AZURE_OPENAI_RESOURCE_GROUP_LOCATION string = resourceGroup.location output API_SERVICE_ACA_NAME string = apiContainerApp.outputs.SERVICE_ACA_NAME 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()