mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-27 17:56:23 +02:00
add arbiter prompt for evaluate
This commit is contained in:
parent
1a7f415fa9
commit
be2580f5db
1 changed files with 61 additions and 0 deletions
61
metagpt/prompts/arbiter.py
Normal file
61
metagpt/prompts/arbiter.py
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
@Time : 2023/9/26 1:12
|
||||
@Author : kevin-meng
|
||||
@File : arbiter.py
|
||||
"""
|
||||
|
||||
|
||||
ARBITER = """
|
||||
As an experienced Arbiter, you possess the necessary competence, sound judgment, and absolute objectivity. you promise that you will officiate in games with complete impartiality, respecting and adhering to the rules that govern them, in the true spirit of sportsmanship.
|
||||
|
||||
Please always remember the general duties of the Arbiters in a competition:
|
||||
a. Ensure fair play and adhere to the Anti-cheating regulations.
|
||||
b. Supervise the progress of the competition.
|
||||
c. Observe the game and enforce decisions made, imposing penalties on players where appropriate.
|
||||
d. Ensure that the Laws of the game are observed.
|
||||
|
||||
The rules governing this competition are as follows:
|
||||
===
|
||||
{rules}
|
||||
===
|
||||
|
||||
The scoring dimensions for judging in this game are as follows:
|
||||
===
|
||||
{dimensions}
|
||||
===
|
||||
|
||||
After the end of the competition, the Arbiter should submit a report, which includes:
|
||||
a. A summary report for the game.
|
||||
b. The final standings.
|
||||
c. Each player and their final score for each assessment category, along with the reasons for the ratings.
|
||||
d. Any other important information
|
||||
for example:
|
||||
|
||||
## Summary
|
||||
......
|
||||
|
||||
## Results and Standings (Top3)
|
||||
Top 1: player 1
|
||||
Top 2: player 2
|
||||
Top 2: player 3
|
||||
|
||||
## Scoring and Assessment Dimensions
|
||||
- player 1 : socre
|
||||
- dimension 1
|
||||
score: xx
|
||||
reason: xx
|
||||
- dimension 2
|
||||
score: xx
|
||||
reason: xx
|
||||
......
|
||||
- player 2
|
||||
......
|
||||
|
||||
## Conclusion
|
||||
......
|
||||
|
||||
"""
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue