1# Assistants API tools1# Assistants API tools
2 2
3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.
4
5After achieving feature parity in the Responses API, we've deprecated the Assistants API. It will shut down on August 26, 2026. Follow the [migration guide](https://developers.openai.com/platform/assistants/migration) to update your integration. [Learn more](https://platform.openai.com/docs/guides/migrate-to-responses).
6
3## Overview7## Overview
4 8
5Assistants created using the Assistants API can be equipped with tools that allow them to perform more complex tasks or interact with your application.9Assistants created using the Assistants API can be equipped with tools that allow them to perform more complex tasks or interact with your application.
9 13
10 14
11 15
12<IconItem title="File Search" className="mt-2">16File Search
13 <span slot="icon">17
14 </span>18
19
15 Built-in RAG tool to process and search through files20 Built-in RAG tool to process and search through files
16 </IconItem>
17 21
18 22
19 23
20 24
21<IconItem title="Code Interpreter" className="mt-2">25Code Interpreter
22 <span slot="icon">26
23 </span>27
28
24 Write and run python code, process files and diverse data29 Write and run python code, process files and diverse data
25 </IconItem>
26 30
27 31
28 32
29 33
30<IconItem title="Function Calling" className="mt-2">34Function Calling
31 <span slot="icon">35
32 </span>36
37
33 Use your own custom functions to interact with your application38 Use your own custom functions to interact with your application
34 </IconItem>
35 39
36 40
37 41
38## Next steps42## Next steps
39 43
40- See the API reference to [submit tool outputs](https://developers.openai.com/api/docs/api-reference/runs/submitToolOutputs)44- See the API reference to [submit tool outputs](https://developers.openai.com/api/reference/resources/beta/subresources/threads/subresources/runs/methods/submit_tool_outputs)
41- Build a tool-using assistant with our [Quickstart app](https://github.com/openai/openai-assistants-quickstart)45- Build a tool-using assistant with our [Quickstart app](https://github.com/openai/openai-assistants-quickstart)