Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejmajek committed Feb 6, 2025
1 parent 843fd9f commit 008252c
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 10 deletions.
66 changes: 65 additions & 1 deletion poetry.lock

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

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
]

packages = [
{ include = "rai_core", from = "src" },
{ include = "rai_asr", from = "src" },
{ include = "rai_tts", from = "src" },
]
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}
rai_tts = {path = "src/rai_tts", develop = true}

langchain-core = "^0.3"
langchain = "*"
langgraph = "*"
Expand Down Expand Up @@ -84,8 +84,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
4 changes: 4 additions & 0 deletions src/rai_asr/rai_asr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""RAI ASR package."""

__version__ = "0.1.0"
Empty file added src/rai_core/README.md
Empty file.
2 changes: 1 addition & 1 deletion src/rai_core/rai/cli/rai_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def create_rai_ws():
(package_path / "generated" / "robot_constitution.txt").touch()

default_constitution_path = (
"src/rai/rai/cli/resources/default_robot_constitution.txt"
"src/rai_core/rai/cli/resources/default_robot_constitution.txt"
)
with open(default_constitution_path, "r") as file:
default_constitution = file.read()
Expand Down
Empty file added src/rai_tts/README.md
Empty file.

0 comments on commit 008252c

Please sign in to comment.