{"id":20731435,"url":"https://github.com/ezroot/gacc","last_synced_at":"2026-04-06T08:31:32.490Z","repository":{"id":170162401,"uuid":"646279984","full_name":"EZroot/GACC","owner":"EZroot","description":"GIACC - Generate Images, Art, Code and Conversations","archived":false,"fork":false,"pushed_at":"2023-07-04T02:44:09.000Z","size":17930,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T10:24:54.539Z","etag":null,"topics":["ai","codegen","cuda","huggingface","image","imagegeneration","python","rust","stablediffusion"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EZroot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-27T21:40:27.000Z","updated_at":"2023-08-21T03:27:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"52c32382-0cb1-4d55-8c3f-625db0b7bd97","html_url":"https://github.com/EZroot/GACC","commit_stats":null,"previous_names":["ezroot/ultimate-ai-assistant","ezroot/gaid"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EZroot/GACC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EZroot%2FGACC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EZroot%2FGACC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EZroot%2FGACC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EZroot%2FGACC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EZroot","download_url":"https://codeload.github.com/EZroot/GACC/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EZroot%2FGACC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31464604,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","codegen","cuda","huggingface","image","imagegeneration","python","rust","stablediffusion"],"created_at":"2024-11-17T05:14:51.901Z","updated_at":"2026-04-06T08:31:32.472Z","avatar_url":"https://github.com/EZroot.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GACC - Generate Art, Code, and Conversations\r\nA collection of:\r\n* Backend AI Server - Python AI backend server\r\n* Windows App - 2D Image generator and editor\r\n* Command Line Interface - Copilot Code generation\r\nBelow you will find the current modules I'm working on for this AI package. \r\n## Picasso - 2D Image Generation AI\r\nAn image editing app with access to AI generation.\r\n* Generate completely new art based on the latest AI models\r\n* Draw images and quickly turn them professional with AI generation tools\r\n* Regenerate, stylize, remove or add new objects to your images\r\n![Pico Picasso](https://github.com/EZroot/GAID/blob/master/showcase.png?raw=true)\r\n## Copilot - Code Generation AI\r\n* Automatically generate syntax passing files\r\n* usage  ```./copilot -pycode generate a file to do something```\r\n\r\n\u003e Supports python only for now.\r\n\r\n## Converse - Text Generation AI\r\n* TODO\r\n\r\nrequires mypy and some other setup.\r\n\r\nuse a python virtual environment or conda to deal with systemwide pips from windows interefereing from running your ai applications\r\npython -m will use a particular pythons pip, so you can download linux one and isolate it to linux pythons pip\r\n\r\npre cuda installation\r\nhttps://docs.nvidia.com/cuda/archive/11.8.0/cuda-installation-guide-linux/index.html#pre-installation-actions\r\n\r\ncuda installation\r\nhttps://docs.nvidia.com/cuda/archive/11.8.0/cuda-installation-guide-linux/index.html#wsl-installation\r\nhttps://developer.nvidia.com/cuda-11-8-0-download-archive?target_os=Linux\u0026target_arch=x86_64\u0026Distribution=WSL-Ubuntu\u0026target_version=2.0\u0026target_type=deb_local\r\n\r\npost cuda installation\r\nhttps://docs.nvidia.com/cuda/archive/11.8.0/cuda-installation-guide-linux/index.html#post-installation-actions\r\n\r\nDont forget to create a config.json in the target/debug directory where the build is\r\n```json\r\n{\r\n  \"api_key\": \"token\",\r\n  \"stable_diffusion_host_address\": \"localhost:6999\",\r\n  \"python_code_create_iterations\": 5,\r\n  \"python_use_conda_over_pip\": true,\r\n  \"stable_diffusion_config\": {\r\n    \"height\": 512,\r\n    \"width\": 712,\r\n    \"num_inference_steps\": 800,\r\n    \"guidance_scale\": 7.5,\r\n    \"img_count\": 25,\r\n    \"use_columns\": true\r\n  }\r\n}\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezroot%2Fgacc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fezroot%2Fgacc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezroot%2Fgacc/lists"}