Skip to content

Commit

Permalink
fix: add configs for openai-chat and openai-chat-markdown to unbreak …
Browse files Browse the repository at this point in the history
…existing projects
  • Loading branch information
Sparkier committed Oct 25, 2023
1 parent 1fe44da commit 2a27af1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions backend/zeno_backend/instance_views/openai-chat-markdown.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"data": {
"type": "list",
"elements": {
"type": "message",
"content": {
"type": "markdown"
}
},
"collapsible": "top"
},
"label": { "type": "markdown" },
"output": {
"type": "message",
"plain": true,
"role": "assistant",
"highlight": true,
"content": {
"type": "markdown"
}
}
}
22 changes: 22 additions & 0 deletions backend/zeno_backend/instance_views/openai-chat.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"data": {
"type": "list",
"elements": {
"type": "message",
"content": {
"type": "text"
}
},
"collapsible": "top"
},
"label": { "type": "text" },
"output": {
"type": "message",
"plain": true,
"role": "assistant",
"highlight": true,
"content": {
"type": "text"
}
}
}

0 comments on commit 2a27af1

Please sign in to comment.