-
Notifications
You must be signed in to change notification settings - Fork 6.6k
refact: extract the core logic into core subfolder #1774
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: fa
Are you sure you want to change the base?
Conversation
Signed-off-by: Lin Yi <[email protected]>
metagpt/core/tools/base.py
Outdated
@@ -0,0 +1,13 @@ | |||
from pydantic import BaseModel | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems missing tool_*.py
metagpt/core/roles/base.py
Outdated
from typing import Optional, Union | ||
|
||
from metagpt.core.base.base_serialization import BaseSerialization | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems missing RoleZero
metagpt/core/actions/base.py
Outdated
@@ -0,0 +1,29 @@ | |||
#!/usr/bin/env python | |||
# -*- coding: utf-8 -*- | |||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems missing action_*.py
metagpt-core安装问题
Features