mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-29 10:56:22 +02:00
fixbug: intent type error
This commit is contained in:
parent
52592ad166
commit
c9a42e85bb
1 changed files with 3 additions and 3 deletions
|
|
@ -139,11 +139,11 @@ DEMO3_CONTENT = [
|
|||
"user_messages",
|
||||
[
|
||||
[Message.model_validate(i) for i in DEMO2_CONTENT if i["role"] == "user"],
|
||||
# [Message.model_validate(i) for i in DEMO_CONTENT if i["role"] == "user"],
|
||||
# [Message.model_validate(i) for i in DEMO1_CONTENT if i["role"] == "user"],
|
||||
[Message.model_validate(i) for i in DEMO_CONTENT if i["role"] == "user"],
|
||||
[Message.model_validate(i) for i in DEMO1_CONTENT if i["role"] == "user"],
|
||||
],
|
||||
)
|
||||
# @pytest.mark.skip
|
||||
@pytest.mark.skip
|
||||
async def test_mgx(user_messages: List[Message], context):
|
||||
mgx = MGX(context=context, tools=["<all>"])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue