This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a79da0
commit a35ba41
Showing
1 changed file
with
44 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
name: AI Tool Function Request | ||
about: This template is used to request the implementation of an AI tool function | ||
within the project. | ||
title: 'AI Tool Function Request: {{ function_name }}' | ||
labels: documentation, enhancement | ||
assignees: yhbcode000, Yubo-Shao | ||
|
||
--- | ||
|
||
**Description**: | ||
We need to implement the AI tool function `{{ function_name }}` to {{ function_description }}. | ||
|
||
### JSON Definition: | ||
|
||
```json | ||
{ | ||
"type": "function", | ||
"function": { | ||
"name": "{{ function_name }}", | ||
"description": "{{ function_description }}", | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"{{ parameter_name }}": { | ||
"type": "{{ parameter_type }}", | ||
"description": "{{ parameter_description }}" | ||
} | ||
}, | ||
"required": [ | ||
"{{ parameter_name }}" | ||
] | ||
} | ||
} | ||
} | ||
``` | ||
|
||
### Implementation Notes: | ||
- Provide a detailed explanation of how this function should be implemented. | ||
- The function should interact with external services or APIs as needed to achieve the expected result. | ||
- Ensure proper error handling, logging, and response formatting. | ||
|
||
### References: | ||
- [Link to relevant resources] |