Skip to content

Commit

Permalink
feat: assistant settings version control
Browse files Browse the repository at this point in the history
  • Loading branch information
emcelroy committed Jan 2, 2025
1 parent d56ed82 commit 8d55107
Show file tree
Hide file tree
Showing 7 changed files with 11,744 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ai-assistant-settings/README.md
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 ai-assistant-settings/asst_6YHBiHu9CPzDh2VokFzJyBel/functions.txt
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"
]
}
}
Loading

0 comments on commit 8d55107

Please sign in to comment.