Skip to content
Open
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
Empty file.
Empty file.
1 change: 1 addition & 0 deletions scenarios/Agents/samples/Foundry-Portal-UI/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Foundry Portal UI Samples
1 change: 1 addition & 0 deletions scenarios/Agents/samples/JavaScript/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Agent JavaScript Samples
24 changes: 24 additions & 0 deletions scenarios/Agents/samples/Python/project-sdk/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Azure Agents Samples - Python Project SDK

## Tools

### Code Interpreter

* [Code Interpreter tool sample](./code-interpreter.py)

The Code Interpreter tool allows the Agent to write and execute Python code in a sandboxed environment. With the Code Interpreter enabled, your Agent can iteratively run code to solve complex coding, mathematical, and data analysis problems.

### File Search

* [File Search tool sample](./file-search.py)
File Search augments the Agent with knowledge from outside its model, such as proprietary product information or documents provided by your users.

To access your files, the file search tool uses the vector store object. Upload your files and create a vector store to contain them. Once the vector store is created, you should poll its status until all files are out of the in_progress state to ensure that all content has finished processing. The SDK provides helpers for uploading and polling.


### Function Calling
* [Python - function calling](./python-function-calling.py)
* [Python - function calling with automatic tool calling](./python-function-calling-toolset.py)
* [Python - function calling with streaming](./python-function-calling-streaming.py)

To use function calling, you need a function defined that can be called by the AI Agent service. You can find an example in the [user_functions.py](./user_functions.py) file in this folder.
3 changes: 3 additions & 0 deletions scenarios/Agents/samples/Python/semantic-kernel/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Azure Agents Samples - Python Semantic Kernel SDK

## Tools
1 change: 1 addition & 0 deletions scenarios/Agents/samples/TypeScript/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Agent TypeScript Samples
62 changes: 0 additions & 62 deletions scenarios/Agents/samples/code-interpreter/readme.md

This file was deleted.

38 changes: 0 additions & 38 deletions scenarios/Agents/samples/file-search/readme.md

This file was deleted.

Loading