-
Notifications
You must be signed in to change notification settings - Fork 26
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
docs: developer guide #158
Conversation
023abd7
to
1558f31
Compare
docs/developer_guide.md
Outdated
def state_retriever(): | ||
"""State retriever used for feeding state information | ||
to agent every iteration""" | ||
return {"temperature": 30, "battery_state": 33} |
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.
Doesn't fit the rest much
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.
Please see the following comments
docs/developer_guide.md
Outdated
agent = create_state_based_agent(llm=llm, state_retriever=state_retriever, tools=tools) | ||
system_prompt = "You are a cow. You are in a field. " | ||
user_prompt = ( | ||
"Please eat the grass 3 times as a cover, then run away at first possibility." |
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.
As a cover?
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.
Typo, cover up/disguise. I've removed this example in favor of a simple ROS2 Agent
8870afe
to
b2b7606
Compare
feat: implement high_level_api refactor: move conversational agent to rai.agents
fix: add _all__ to rai main init file
Co-authored-by: Adam Dąbrowski <adam.dabrowski@robotec.ai>
8d9a3bd
to
33cd848
Compare
Purpose
Explaining idea behind RAI, showcasing RAI's adaptability with quickstart snippet and developer guide.
Proposed Changes
Adding developer guide, docs enhancements
Issues
Testing
Provided snippets were tested.