{"id":22963125,"url":"https://github.com/samuelasherrivello/rmc-ai","last_synced_at":"2026-04-24T16:33:11.456Z","repository":{"id":241364464,"uuid":"623013926","full_name":"SamuelAsherRivello/rmc-ai","owner":"SamuelAsherRivello","description":"RMC Library for Open AI endpoints including Chat-GPT and Dall-E","archived":false,"fork":false,"pushed_at":"2024-08-13T14:55:04.000Z","size":653,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-22T14:43:37.524Z","etag":null,"topics":["ai","artificial-intelligence","best-practices","game-development","unity"],"latest_commit_sha":null,"homepage":"https://www.samuelasherrivello.com/ai-portfolio/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SamuelAsherRivello.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-03T14:16:29.000Z","updated_at":"2024-09-16T15:54:53.000Z","dependencies_parsed_at":"2024-05-28T01:22:42.700Z","dependency_job_id":"63911de5-6156-4d90-aa72-c25e689ecc13","html_url":"https://github.com/SamuelAsherRivello/rmc-ai","commit_stats":null,"previous_names":["samuelasherrivello/rmc-ai"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/SamuelAsherRivello/rmc-ai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelAsherRivello%2Frmc-ai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelAsherRivello%2Frmc-ai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelAsherRivello%2Frmc-ai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelAsherRivello%2Frmc-ai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SamuelAsherRivello","download_url":"https://codeload.github.com/SamuelAsherRivello/rmc-ai/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelAsherRivello%2Frmc-ai/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32230952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","artificial-intelligence","best-practices","game-development","unity"],"created_at":"2024-12-14T19:20:42.776Z","updated_at":"2026-04-24T16:33:11.440Z","avatar_url":"https://github.com/SamuelAsherRivello.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm package](https://img.shields.io/npm/v/com.rmc.rmc-ai)](https://www.npmjs.com/package/com.rmc.unity-package-template)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\n\u003cimg width = \"400\" src=\"https://raw.githubusercontent.com/SamuelAsherRivello/rmc-core/main/RMC%20Core/Documentation~/com.rmc_namespace_logo.png\" /\u003e\n\n# RMC AI\n\n- [How To Use](#how-to-use)\n- [Install](#install)\n  - [Via NPM](#via-npm)\n  - [Or Via Git URL](#or-via-git-url)\n- [Optional](#optional)\n  - [Tests](#tests)\n  - [Samples](#samples)\n- [Configuration](#configuration)\n\n\u003c!-- toc --\u003e\n\n## How to use\n\nRMC's AI library\n\nEnjoy!\n\n## Install\n\nYou can either install [Via NPM](#via-npm) or [Via Git URL](#or-via-git-url). The result will be the same.\n\n### Via NPM\n\nYou can either use the Unity Package Manager Window (UPM) or directly edit the manifest file. The result will be the same.\n\n**UPM**\n\nTo use the [Package Manager Window](https://docs.unity3d.com/Manual/upm-ui.html), first add a [Scoped Registry](https://docs.unity3d.com/2023.1/Documentation/Manual/upm-scoped.html), then click on the interface menu ( `Status Bar → (+) Icon → Add Package By Name ...` ).\n\n**Manifest File**\n\nOr to edit the `Packages/manifest.json` directly with your favorite text editor, add a scoped registry then the following line(s) to dependencies block:\n\n```json\n{\n  \"scopedRegistries\": [\n    {\n      \"name\": \"npmjs\",\n      \"url\": \"https://registry.npmjs.org/\",\n      \"scopes\": [\n        \"com.rmc\"\n      ]\n    }\n  ],\n  \"dependencies\": {\n    \"com.rmc.rmc-ai\": \"0.8.0\"\n  }\n}\n```\nPackage should now appear in package manager.\n\n\n### Or Via Git URL\n\nYou can either use the Unity Package Manager (UPM) Window or directly edit the manifest file. The result will be the same.\n\n**UPM**\n\nTo use the [Package Manager Window](https://docs.unity3d.com/Manual/upm-ui.html) click on the interface menu ( `Status Bar → (+) Icon → Add Package From Git Url ...` ).\n\n**Manifest File**\n\nOr to edit the `Packages/manifest.json` directly with your favorite text editor, add following line(s) to the dependencies block:\n```json\n{\n  \"dependencies\": {\n      \"com.rmc.rmc-ai\": \"https://github.com/SamuelAsherRivello/rmc-ai.git\"\n  }\n}\n```\n\n## Optional\n\n### Tests\n\nThe package can optionally be set as *testable*.\nIn practice this means that tests in the package will be visible in the [Unity Test Runner](https://docs.unity3d.com/2017.4/Documentation/Manual/testing-editortestsrunner.html).\n\nOpen `Packages/manifest.json` with your favorite text editor. Add following line **after** the dependencies block:\n```json\n{\n  \"dependencies\": {\n  },\n  \"testables\": [ \"com.rmc.rmc-ai\" ]\n}\n```\n\n### Samples\n\nSome packages include optional samples with clear use cases. To import and run the samples:\n\n1. Open Unity \n1. Complete the package installation (See above)\n1. Open the [Package Manager Window](https://docs.unity3d.com/Manual/upm-ui.html)\n1. Select this package \n1. Select samples\n1. Import\n\n## Configuration\n\n* `Unity Target` - [Standalone MAC/PC](https://support.unity.com/hc/en-us/articles/206336795-What-platforms-are-supported-by-Unity-)\n* `Unity Version` - Any [Unity Editor](https://unity.com/download) 2021.x or higher\n* `Unity Rendering` - Any [Unity Render Pipeline](https://docs.unity3d.com/Manual/universal-render-pipeline.html)\n* `Unity Aspect Ratio` - Any [Unity Game View](https://docs.unity3d.com/Manual/GameView.html)\n\n\nCreated By\n=============\n\n- Samuel Asher Rivello \n- Over 23 years XP with game development (2023)\n- Over 10 years XP with Unity (2023)\n\nContact\n=============\n\n- Twitter - \u003ca href=\"https://twitter.com/srivello/\"\u003e@srivello\u003c/a\u003e\n- Resume \u0026 Portfolio - \u003ca href=\"http://www.SamuelAsherRivello.com\"\u003eSamuelAsherRivello.com\u003c/a\u003e\n- Source Code on Git - \u003ca href=\"https://github.com/SamuelAsherRivello/\"\u003eGithub.com/SamuelAsherRivello\u003c/a\u003e\n- LinkedIn - \u003ca href=\"https://Linkedin.com/in/SamuelAsherRivello\"\u003eLinkedin.com/in/SamuelAsherRivello\u003c/a\u003e \u003c--- Say Hello! :)\n\nLicense\n=============\n\nProvided as-is under MIT License | Copyright © 2023 Rivello Multimedia Consulting, LLC\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamuelasherrivello%2Frmc-ai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamuelasherrivello%2Frmc-ai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamuelasherrivello%2Frmc-ai/lists"}