-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allowed players to assume multiple unique roles in a game.
- Loading branch information
Haidar Khan
committed
Jul 27, 2024
1 parent
1f612e2
commit c4cc6f3
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 @@ | ||
manager: | ||
args: | ||
max_rounds: 10 | ||
win_conditions: | ||
- TeacherCorrect | ||
- TeacherIncorrect | ||
- StudentCorrect | ||
- StudentIncorrect | ||
game: | ||
name: mathquiz | ||
players: | ||
- name: mathquiz_teacher | ||
args: | ||
id: gpt4 teacher | ||
roles: | ||
- TeacherGenerateQuestion | ||
- TeacherAnswerQuestion | ||
lm: | ||
type: AzureOpenAI | ||
args: | ||
api_base: https://allam-swn-gpt-01.openai.azure.com/ | ||
api_version: 2023-07-01-preview | ||
deployment_id: gpt-4o-900ptu | ||
max_tokens: 800 | ||
temperature: 0.8 | ||
top_p: 0.95 | ||
frequency_penalty: 0 | ||
presence_penalty: 0 | ||
- name: mathquiz_student | ||
args: | ||
id: gpt4 student | ||
roles: | ||
- StudentAnswerQuestion | ||
lm: | ||
type: AzureOpenAI | ||
args: | ||
api_base: https://allam-swn-gpt-01.openai.azure.com/ | ||
api_version: 2023-07-01-preview | ||
deployment_id: gpt-4o-900ptu | ||
max_tokens: 800 | ||
temperature: 0.8 | ||
top_p: 0.95 | ||
frequency_penalty: 0 | ||
presence_penalty: 0 |