-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
4ccd697
commit aca9559
Showing
19 changed files
with
310 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Error | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | | ||
| `type` | *str* | :heavy_check_mark: | The type of error encountered during the tool’s execution. | | ||
| `msg` | *str* | :heavy_check_mark: | The message of error. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Files | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------------- | | ||
| `name` | *str* | :heavy_check_mark: | The name of the file generated by the tool’s execution. | | ||
| `url` | *str* | :heavy_check_mark: | URL of the file generated by the tool’s execution. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Name | ||
|
||
The name of the built-in tool. | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| ------------------------- | ------------------------- | | ||
| `MATH_CALCULATOR` | math:calculator | | ||
| `MATH_STATISTICS` | math:statistics | | ||
| `MATH_CALENDAR` | math:calendar | | ||
| `WEB_SEARCH` | web:search | | ||
| `WEB_URL` | web:url | | ||
| `CODE_PYTHON_INTERPRETER` | code:python-interpreter | | ||
| `FILE_TEXT` | file:text | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# One | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | | ||
| `data` | [models.StreamedToolAssistedChatResultData](../models/streamedtoolassistedchatresultdata.md) | :heavy_check_mark: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Status | ||
|
||
Indicates the current execution status of the tool. | ||
|
||
|
||
## Values | ||
|
||
| Name | Value | | ||
| ---------- | ---------- | | ||
| `STARTED` | STARTED | | ||
| `UPDATING` | UPDATING | | ||
| `ENDED` | ENDED | | ||
| `ERRORED` | ERRORED | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ToolAssistedChatToolStatusEvent | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | | ||
| `tool_call_id` | *str* | :heavy_check_mark: | The ID of the tool call. | | ||
| `name` | [models.Name](../models/name.md) | :heavy_check_mark: | The name of the built-in tool. | | ||
| `status` | [models.Status](../models/status.md) | :heavy_check_mark: | Indicates the current execution status of the tool. | | ||
| `parameters` | List[[models.ToolAssistedChatToolStatusEventParameters](../models/toolassistedchattoolstatuseventparameters.md)] | :heavy_check_mark: | N/A | | ||
| `result` | *str* | :heavy_check_mark: | The output from the tool’s execution. | | ||
| `timestamp` | *float* | :heavy_check_mark: | The Unix timestamp (in seconds) for when the event occurred. | | ||
| `files` | List[[models.Files](../models/files.md)] | :heavy_minus_sign: | N/A | | ||
| `message` | *Optional[str]* | :heavy_minus_sign: | Message generated by the tool’s execution. | | ||
| `error` | [Optional[models.Error]](../models/error.md) | :heavy_minus_sign: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ToolAssistedChatToolStatusEventParameters | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | ------------------------------------------- | | ||
| `name` | *str* | :heavy_check_mark: | The name of the tool’s function parameter. | | ||
| `value` | *str* | :heavy_check_mark: | The value of the tool’s function parameter. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Two | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | | ||
| `event` | *Literal["tool_status"]* | :heavy_check_mark: | N/A | | ||
| `data` | [Optional[models.ToolAssistedChatToolStatusEvent]](../models/toolassistedchattoolstatusevent.md) | :heavy_minus_sign: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.