Skip to content

Commit 0374433

Browse files
committed
Add troubleshooting and context
1 parent 876cde6 commit 0374433

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

articles/ai-services/agents/how-to/tools/azure-functions.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ To use all features of function calling including parallel functions, you need t
138138

139139
## Define a function for your agent to call
140140

141-
Start by defining an Azure Function queue trigger function that will process function calls from the queue.
141+
Start by defining an Azure Function queue trigger function that will process AI function calls from the queue.
142142

143143
# [Python](#tab/python)
144144

@@ -186,7 +186,10 @@ No REST equivalent provided.
186186

187187
## Create an AI project client and agent
188188

189-
In the sample below we create a client and an agent that has the tools definition for the Azure Function.
189+
In the sample below we create a client and an agent that has the AI tools definition for the Azure Function. The term `function` is used in two contexts within the AI tool definition:
190+
191+
* Azure Function: the type of tool. This is the Azure Functions app.
192+
* Function: the Http trigger function within the Azure Function to call when the tool is invoked in the AI Project.
190193

191194
# [Python](#tab/python)
192195

@@ -403,3 +406,19 @@ curl $AZURE_AI_AGENTS_ENDPOINT/threads/thread_abc123/messages?api-version=2024-1
403406
```
404407

405408
::: zone-end
409+
410+
## Troubleshooting
411+
412+
# [Python](#tab/python)
413+
414+
For any issues with the Python code, create an issue on the [sample code repository](https://github.com/Azure-Samples/azure-functions-ai-services-agent-python/issues)
415+
416+
# [TypeScript](#tab/typescript)
417+
418+
For any issues with the TypeScript code, create an issue on the [sample code repository](https://github.com/Azure-Samples/azure-functions-ai-services-agent-javascript/issues)
419+
420+
# [REST API](#tab/rest)
421+
422+
No REST equivalent provided.
423+
424+
---

0 commit comments

Comments
 (0)