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

release: rai-2.0.0 #389

Draft
wants to merge 4 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .github/workflows/poetry-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ on:
types: [opened, synchronize, reopened, edited, ready_for_review]
branches:
- development
- rc/rai-2.0.0

jobs:
build-and-test-ros2:
if: github.event.pull_request.draft == false
# if: github.event.pull_request.draft == false

runs-on:
- self-hosted
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- development
- rc/rai-2.0.0
workflow_dispatch:

jobs:
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ repos:
- id: autoflake
args: ["--remove-all-unused-imports", "--in-place"]

- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
# - repo: https://github.com/pycqa/isort
# rev: 5.13.2
# hooks:
# - id: isort
# args: ["--profile", "black", "--filter-files"]

- repo: https://github.com/psf/black
rev: 24.4.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ rosdep install --from-paths src --ignore-src -r -y
Run the configuration tool to set up your vendor and other settings:

```bash
poetry run streamlit run src/rai/rai/utils/configurator.py
poetry run streamlit run src/rai_core/rai/utils/configurator.py
```

> [!TIP]
Expand Down
2 changes: 1 addition & 1 deletion docs/debugging_assistant.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The ROS 2 Debugging Assistant is an interactive tool that helps developers inspe

```sh
source setup_shell.sh
streamlit run src/rai/rai/tools/debugging_assistant.py
streamlit run src/rai_core/rai/tools/debugging_assistant.py
```

## Usage Examples
Expand Down
28 changes: 27 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.poetry]
name = "rai"
version = "1.0.0"
name = "rai-framework"
version = "1.1.0"
description = "RAI is a framework for building general multi-agent systems, bringing Gen AI features to ROS enabled robots."
readme = "README.md"
authors = ["Maciej Majek <maciej.majek@robotec.ai>", "Bartłomiej Boczek <bartlomiej.boczek@robotec.ai>"]
authors = ["Maciej Majek <maciej.majek@robotec.ai>", "Bartłomiej Boczek <bartlomiej.boczek@robotec.ai>", "Kajetan Rachwał <kajetan.rachwal@robotec.ai>"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
Expand All @@ -12,6 +12,8 @@ classifiers = [
package-mode = false
[tool.poetry.dependencies]
python = "^3.10, <3.13"
rai = { path = "src/rai_core", develop = true}
rai-asr = { path = "src/rai_asr", develop = true}
langchain-core = "^0.3"
langchain = "*"
langgraph = "*"
Expand Down Expand Up @@ -77,8 +79,8 @@ visualnav_transformer = { git = "https://github.com/RobotecAI/visualnav-transfor
gdown = "^5.2.0"

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.isort]
profile = "black"
Expand Down
2 changes: 1 addition & 1 deletion setup_shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ case "$SHELL" in
esac

export PYTHONPATH
PYTHONPATH="$(dirname "$(dirname "$(poetry run which python)")")/lib/python$(poetry run python --version | awk '{print $2}' | cut -d. -f1,2)/site-packages:$PYTHONPATH"
PYTHONPATH="$(dirname "$(dirname "$(poetry run which python)")")/lib/python$(poetry run python --version | awk '{print $2}' | cut -d. -f1,2)/site-packages:$(pwd)/src/rai_core:$PYTHONPATH"
202 changes: 0 additions & 202 deletions src/rai/LICENSE

This file was deleted.

23 changes: 0 additions & 23 deletions src/rai/package.xml

This file was deleted.

4 changes: 0 additions & 4 deletions src/rai/setup.cfg

This file was deleted.

Loading