-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
feat: KnowNo implementation #1629
Conversation
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.
thanks @MuggleJinx ! Left some comment for minor suggestion and updated in commit: 4650779
camel/agents/chat_agent.py
Outdated
def update_reasoning( | ||
self, | ||
input_message: BaseMessage, | ||
reason_params: Optional[Dict[str, Any]] = None, | ||
) -> BaseMessage: | ||
r"""Update the reasoning of the agent.""" |
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.
make this function internal and add docstring
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.
file naming is not standard
model_platform=ModelPlatformType.OPENAI, | ||
model_type=ModelType.GPT_4O, | ||
model_config_dict=ChatGPTConfig().as_dict(), | ||
) |
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.
use ModelPlatformType.DEFAULT
and ModelType.DEFAULT
for examples
openai_agent = ChatAgent( | ||
system_message=sys_msg, | ||
model=openai_model, | ||
message_window_size=10, |
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.
remove this
Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com> Co-authored-by: Wendong <w3ndong.fan@gmail.com>
Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com> Co-authored-by: Wendong <w3ndong.fan@gmail.com>
Description
Close #1542.
Checklist
Go over all the following points, and put an
x
in all the boxes that apply.Fixes #issue-number
in the PR description (required)pyproject.toml
andpoetry.lock
If you are unsure about any of these, don't hesitate to ask. We are here to help!