Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix project name export in main bicep #162

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/api/agents/product/product.prompty
Original file line number Diff line number Diff line change
Expand Up @@ -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}}

Expand Down
2 changes: 1 addition & 1 deletion src/api/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Loading