Skip to content
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

Chat engine #11

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6e1d34b
set python to inherit
hollandjg Jul 22, 2024
19ac2d1
add start of chat module
hollandjg Jul 22, 2024
8eaccc2
add framework for chat module – can do updates to behavior list
hollandjg Jul 22, 2024
5fdb462
reformatc
hollandjg Jul 22, 2024
afa3e15
always use black
hollandjg Jul 22, 2024
0ae711a
update to use available behaviors in the world object
hollandjg Jul 22, 2024
ab57b50
add doctest to add_behavior
hollandjg Jul 22, 2024
cbfe062
simplify Behavior – it's just a callable now
hollandjg Jul 22, 2024
03a328c
move integer world bits into separate class
hollandjg Jul 22, 2024
0472cf8
add function for updating behavior
hollandjg Jul 22, 2024
8e3aea8
add catchall to end of case match
hollandjg Jul 22, 2024
de68bd9
add docstrings
hollandjg Jul 22, 2024
26eba21
fix name shadowing
hollandjg Jul 22, 2024
fa979df
update code inspection ignores for black formatting
hollandjg Jul 22, 2024
c488162
move intworld to a separate file
hollandjg Jul 22, 2024
2521247
add a behavior tree world where you can change the behavior by adding…
hollandjg Jul 22, 2024
9de965d
add a function to remove a node
hollandjg Jul 22, 2024
a26e7a7
add doctests
hollandjg Jul 23, 2024
bd4a88e
add move node and exchange node functions
hollandjg Jul 23, 2024
329bea9
add functions to identify a particular index for movement
hollandjg Jul 23, 2024
7fdc64b
Merge branch 'main' into chat-engine
hollandjg Aug 12, 2024
307f3cd
rename chat to mutate_tree
hollandjg Aug 14, 2024
7c59ab5
Test PR
zaydin13 Aug 23, 2024
e5b18f0
small adjustment to displaying tree
jashlu Aug 28, 2024
fbfdbfe
Revert "Test PR"
jashlu Sep 10, 2024
fb5483c
Revert "small adjustment to displaying tree"
jashlu Sep 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ classifiers = [ # Optional

dependencies = [ # Optional
"py_trees",
"websockets"
"websockets",
"click",
"typer",
]

# List additional groups of dependencies here (e.g. development
Expand Down
Loading