Add examples for frozenlake and emailsearch (#94)

This commit is contained in:
Yuchang Sun
2026-01-19 12:25:13 +08:00
committed by GitHub
parent 3821fb04ac
commit 654c35127a
26 changed files with 3370 additions and 14 deletions

View File

@@ -19,7 +19,9 @@ from structured_model import (
get_seer_model,
get_hunter_model,
)
from prompt import EnglishPrompts as Prompts
from prompt import (
EnglishPrompts as Prompts,
) # pylint: disable=no-name-in-module
# Uncomment the following line to use Chinese prompts
# from prompt import ChinesePrompts as Prompts

View File

@@ -6,7 +6,9 @@ from typing import Any
import numpy as np
from agentscope.agent import AgentBase, ReActAgent
from agentscope.message import Msg
from prompt import EnglishPrompts as Prompts
from prompt import (
EnglishPrompts as Prompts,
) # pylint: disable=no-name-in-module
MAX_GAME_ROUND = 30
MAX_DISCUSSION_ROUND = 3