Skip to content

Instantly share code, notes, and snippets.

@HikaruEgashira
Last active June 10, 2023 08:27
Show Gist options
  • Save HikaruEgashira/8dc92c4836d4e16a47363b58256475a9 to your computer and use it in GitHub Desktop.
Save HikaruEgashira/8dc92c4836d4e16a47363b58256475a9 to your computer and use it in GitHub Desktop.
----タスク
1900年代であると仮定して、その時代に相応しいOKRを考えなさい
----タスクを下記のJSON Schemaに一致するJSON形式で回答しなさい
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Assistant Output",
"type": "array",
"items": {
"type": "object",
"properties": {
"objective": {
"type": "string"
},
"keyresults": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["objective", "keyresults"]
}
}
----出力例
[{
"objective": "チーム全員が念を使えるようになる。",
"keyresults": [
"念の体系を身につける",
"週に1回以上念を使う",
"毎日1回以上念を使う"
]
}]
----出力条件
- 結果のみを簡潔に
- 句読点は不要
- 出力例とは異なる内容にする
- 1番外側の配列数は10個
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment