docs: fix typos in tool_feat_table.py (#31731)

This commit is contained in:
Michael Li
2025-06-26 01:56:59 +10:00
committed by GitHub
parent df1a4c0085
commit a09583204c

View File

@@ -71,7 +71,7 @@ SEARCH_TOOL_FEAT_TABLE = {
CODE_INTERPRETER_TOOL_FEAT_TABLE = {
"Bearly Code Interpreter": {
"langauges": "Python",
"languages": "Python",
"sandbox_lifetime": "Resets on Execution",
"upload": True,
"return_results": "Text",
@@ -79,7 +79,7 @@ CODE_INTERPRETER_TOOL_FEAT_TABLE = {
"self_hosting": False,
},
"Riza Code Interpreter": {
"langauges": "Python, JavaScript, PHP, Ruby",
"languages": "Python, JavaScript, PHP, Ruby",
"sandbox_lifetime": "Resets on Execution",
"upload": True,
"return_results": "Text",
@@ -87,7 +87,7 @@ CODE_INTERPRETER_TOOL_FEAT_TABLE = {
"self_hosting": True,
},
"Azure Container Apps dynamic sessions": {
"langauges": "Python",
"languages": "Python",
"sandbox_lifetime": "1 Hour",
"upload": True,
"return_results": "Text, Images",
@@ -350,7 +350,7 @@ def get_code_interpreter_table() -> str:
"""Get the table of code interpreter tools."""
header = [
"tool",
"langauges",
"languages",
"sandbox_lifetime",
"upload",
"return_results",