-
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.
feat: assistant settings version control
- Loading branch information
Showing
7 changed files
with
11,744 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,14 @@ | ||
# AI Assistant Settings | ||
|
||
This is a repository of AI assistant settings values for which we want simple version control. The settings values are currently entered and saved at platform.openai.com. | ||
|
||
## Directory Structure | ||
|
||
Each assistant in the DAVAI project has its own subdirectory containing text files for each specific setting we track. For example, instructions.txt is for the assistant's Instructions setting value. | ||
|
||
## Workflow | ||
|
||
Since non-developers can modify settings but are unlikely to update this repository, developers should follow these steps to ensure the repository stays reasonably up-to-date: | ||
|
||
1. Before making changes, copy the value(s) from platform.openai.com and commit any changes not already recorded here. | ||
2. Make your changes on platform.openai.com, then update the corresponding files here and commit the changes. |
27 changes: 27 additions & 0 deletions
27
ai-assistant-settings/asst_6YHBiHu9CPzDh2VokFzJyBel/functions.txt
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,27 @@ | ||
{ | ||
"name": "create_request", | ||
"description": "Create a request to send to the CODAP Data Interactive API", | ||
"strict": false, | ||
"parameters": { | ||
"type": "object", | ||
"properties": { | ||
"action": { | ||
"type": "string", | ||
"description": "The action to perform" | ||
}, | ||
"resource": { | ||
"type": "string", | ||
"description": "The resource to act upon" | ||
}, | ||
"values": { | ||
"type": "object", | ||
"description": "The values to pass to the action" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"action", | ||
"resource" | ||
] | ||
} | ||
} |
Oops, something went wrong.