From e010974b8b39dabe62a907935f62b2794fc67e26 Mon Sep 17 00:00:00 2001 From: Nikolay <179462149+nik-al@users.noreply.github.com> Date: Tue, 27 Aug 2024 13:49:04 +0300 Subject: [PATCH] Updated links --- README.md | 4 ++-- examples/StockManagementGame/README.md | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3740115..ac8d18d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This is a Python library for interactively running models exported from the RL e Currently, this library released as a **public beta** (so please excuse any rough edges). If you have problems or bugs, please file them in the `Issues` tab. For general talk or questions, there's the `Discussions` tab. -Full documentation (with background information, getting started guide, and class docs) can be found @ https://t-wolfeadam.github.io/Alpyne +Full documentation (with background information, getting started guide, and class docs) can be found @ https://the-anylogic-company.github.io/Alpyne All contributions, including new or improved example models and training scripts, are thoroughly welcomed! See the note at the end for more specifics. @@ -36,7 +36,7 @@ In your Python code, you will create a single AnyLogicSim object which represent In creating the AnyLogicSim, you pass a reference to where your exported model is located, in addition to options for log level, engine settings, and other behavioral options. This object then gives you access to functions for interacting with the model run, including resetting it, querying its status, applying some action, and getting outputs. -You can learn more about the specifics and deeper background information from reviewing the [documentation](https://t-wolfeadam.github.io/Alpyne) or referencing the provided examples. +You can learn more about the specifics and deeper background information from reviewing the [documentation](https://the-anylogic-company.github.io/Alpyne) or referencing the provided examples. Note that some examples require additional libraries to be added in your AnyLogic environment; see their individual READMEs for more details. diff --git a/examples/StockManagementGame/README.md b/examples/StockManagementGame/README.md index 77203c1..f65e892 100644 --- a/examples/StockManagementGame/README.md +++ b/examples/StockManagementGame/README.md @@ -6,7 +6,7 @@ The goal is to learn a policy which is able to control the order rate such that ## Usage -⚠️To export the model without compile-time errors and without changing the source, you'll need to at least add the Pypeline library to your AnyLogic environment ([on GitHub](https://github.com/t-wolfeadam/AnyLogic-Pypeline)). For running inferences on the trained policy, you will need to configure the PyCommunicator object in the model to point to your desired Python environment. +⚠️To export the model without compile-time errors and without changing the source, you'll need to at least add the Pypeline library to your AnyLogic environment ([on GitHub](https://github.com/the-anylogic-company/AnyLogic-Pypeline)). For running inferences on the trained policy, you will need to configure the PyCommunicator object in the model to point to your desired Python environment. The model's Main agent has a "mode" parameter that can be in one of four operational modes: diff --git a/setup.py b/setup.py index 59b7004..595d40c 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,11 @@ name="anylogic-alpyne", version="1.2.0", author="Tyler Wolfe-Adam", - author_email="t.wolfeadam@anylogic.com", + author_email="info@anylogic.com", description="Run AnyLogic models exported from the RL Experiment", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/t-wolfeadam/Alpyne", + url="https://github.com/the-anylogic-company/Alpyne", classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python :: 3",