From f266674266e4d293a9a52e8a3b5ac5fa147ca70b Mon Sep 17 00:00:00 2001 From: Agustin Ramiro Diaz Date: Wed, 30 Jul 2025 13:32:45 -0300 Subject: [PATCH] update simulator links to studio --- .../developers/intelligent-contracts/examples/prediction.mdx | 2 +- .../intelligent-contracts/examples/wizard-of-coin.mdx | 2 +- .../genlayer-studio/advanced-features/custom-plugins.mdx | 4 ++-- theme.config.tsx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/developers/intelligent-contracts/examples/prediction.mdx b/pages/developers/intelligent-contracts/examples/prediction.mdx index 357d9a8d..37968087 100644 --- a/pages/developers/intelligent-contracts/examples/prediction.mdx +++ b/pages/developers/intelligent-contracts/examples/prediction.mdx @@ -87,7 +87,7 @@ class PredictionMarket(gl.Contract): return result_json ``` -You can check out this code on our [GitHub](https://github.com/genlayerlabs/genlayer-simulator/blob/main/examples/contracts/football_prediction_market.py) +You can check out this code on our [GitHub](https://github.com/genlayerlabs/genlayer-studio/blob/main/examples/contracts/football_prediction_market.py) ## Deploying the Contract diff --git a/pages/developers/intelligent-contracts/examples/wizard-of-coin.mdx b/pages/developers/intelligent-contracts/examples/wizard-of-coin.mdx index 7eb14ced..bc242985 100644 --- a/pages/developers/intelligent-contracts/examples/wizard-of-coin.mdx +++ b/pages/developers/intelligent-contracts/examples/wizard-of-coin.mdx @@ -58,7 +58,7 @@ This result should be perfectly parseable by a JSON parser without errors. return self.have_coin ``` -You can check out this code on our [GitHub](https://github.com/genlayerlabs/genlayer-simulator/blob/main/examples/contracts/wizard_of_coin.py) +You can check out this code on our [GitHub](https://github.com/genlayerlabs/genlayer-studio/blob/main/examples/contracts/wizard_of_coin.py) ## Deploying the Contract diff --git a/pages/developers/intelligent-contracts/tools/genlayer-studio/advanced-features/custom-plugins.mdx b/pages/developers/intelligent-contracts/tools/genlayer-studio/advanced-features/custom-plugins.mdx index 4e7162a9..cf2e3f3c 100644 --- a/pages/developers/intelligent-contracts/tools/genlayer-studio/advanced-features/custom-plugins.mdx +++ b/pages/developers/intelligent-contracts/tools/genlayer-studio/advanced-features/custom-plugins.mdx @@ -23,7 +23,7 @@ In addition to these built-in providers, you have the flexibility to integrate y ### Creating the Plugin -To integrate a new LLM provider plugin, you need to implement the `Plugin` protocol defined in the [llms.py](https://github.com/genlayerlabs/genlayer-simulator/blob/main/backend/node/genvm/llms.py) file. The protocol is structured as follows: +To integrate a new LLM provider plugin, you need to implement the `Plugin` protocol defined in the [llms.py](https://github.com/genlayerlabs/genlayer-studio/blob/main/backend/node/genvm/llms.py) file. The protocol is structured as follows: ```python class Plugin(Protocol): @@ -107,7 +107,7 @@ plugin_map = { ## Updating the JSON Schema -To maintain consistency and enable proper configuration validation, you must update the [JSON schema](https://json-schema.org/) in the [`providers_schema.json`](https://github.com/genlayerlabs/genlayer-simulator/blob/main/backend/node/create_nodes/providers_schema.json) file. This update should include your new provider and its specific configuration options. +To maintain consistency and enable proper configuration validation, you must update the [JSON schema](https://json-schema.org/) in the [`providers_schema.json`](https://github.com/genlayerlabs/genlayer-studio/blob/main/backend/node/create_nodes/providers_schema.json) file. This update should include your new provider and its specific configuration options. The JSON schema plays a crucial role in validating the configuration options for each provider, ensuring that users input correct and compatible settings. diff --git a/theme.config.tsx b/theme.config.tsx index 75d578c6..8e01bde8 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -9,7 +9,7 @@ import DiscordIcon from "./components/discord"; const config: DocsThemeConfig = { logo: , project: { - link: "https://github.com/genlayerlabs/genlayer-simulator", + link: "https://github.com/genlayerlabs", }, docsRepositoryBase: "https://github.com/genlayerlabs/genlayer-docs/tree/main", footer: {