{"id":15169611,"url":"https://github.com/Kritik-helpingai/VORTEX","last_synced_at":"2025-03-08T12:35:02.358Z","repository":{"id":216777908,"uuid":"742385504","full_name":"HelpingAI/VORTEX","owner":"HelpingAI","description":"VortexGPT provides free access to text and image generation models.","archived":false,"fork":false,"pushed_at":"2024-01-12T12:58:23.000Z","size":31,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-18T00:21:45.379Z","etag":null,"topics":["ai","artificial-intelligence","deep-learning","free","gpt","gpt3","gpt4","llama","nlp-machine-learning","python","vortexgpt"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/VortexGPT/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HelpingAI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2024-01-12T11:04:11.000Z","updated_at":"2024-08-12T00:18:03.000Z","dependencies_parsed_at":"2024-01-12T20:08:35.603Z","dependency_job_id":"f2e19067-3379-4b74-9e88-d3e443e36011","html_url":"https://github.com/HelpingAI/VORTEX","commit_stats":null,"previous_names":["helpingai/vortex"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelpingAI%2FVORTEX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelpingAI%2FVORTEX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelpingAI%2FVORTEX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HelpingAI%2FVORTEX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HelpingAI","download_url":"https://codeload.github.com/HelpingAI/VORTEX/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221063981,"owners_count":16749596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","deep-learning","free","gpt","gpt3","gpt4","llama","nlp-machine-learning","python","vortexgpt"],"created_at":"2024-09-27T07:04:06.457Z","updated_at":"2025-03-08T12:34:56.918Z","avatar_url":"https://github.com/HelpingAI.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VortexGPT\r\n\r\nVortexGPT provides free access to text and image generation models.\r\n\r\n## Getting Started:\r\n\r\n    python -m pip install -U VortexGPT\r\n\r\nJoin my [Discord server](https://discord.gg/hf99YvT8qX ) for live chat, support, or if you have any issues with this package.\r\n\r\n## Sources:\r\n\r\n| Model        | Website                                               |\r\n| ------------ | ----------------------------------------------------- |\r\n| gpt3         | [chat9.yqcloud.top](https://chat9.yqcloud.top/)       |\r\n| gpt4         | [you.com](https://you.com/)                           |\r\n| alpaca_7b    | [chatllama.baseten.co](https://chatllama.baseten.co/) |\r\n| falcon_40b   | [gpt-gm.h2o.ai](https://gpt-gm.h2o.ai/)               |\r\n| prodia       | [prodia.com](https://prodia.com/)                     |\r\n| pollinations | [pollinations.ai](https://pollinations.ai/)           |\r\n| more         | comming soon                                          |\r\n## Support this repository:\r\n\r\n-   🎉 **Join my Discord Server:** Chat with me and others. [Join here](https://discord.gg/hf99YvT8qX ):\r\n\r\n[![DiscordWidget](https://discordapp.com/api/guilds/1076407776403787796/widget.png?style=banner2)](https://discord.gg/hf99YvT8qX)\r\n\r\n## Examples:\r\n\r\n### Text Completion:\r\n\r\n**Async:**\r\n\r\n```python\r\nfrom VortexGPT import AsyncClient\r\nfrom asyncio import run\r\n\r\n\r\nasync def main():\r\n    while True:\r\n        prompt = input(\"👦: \")\r\n        try:\r\n            resp = await AsyncClient.create_completion(\"MODEL\", prompt)\r\n            print(f\"🤖: {resp}\")\r\n        except Exception as e:\r\n            print(f\"🤖: {e}\")\r\n\r\n\r\nrun(main())\r\n```\r\n\r\n**Non-Async:**\r\n\r\n```python\r\nfrom VortexGPT import Client\r\n\r\nwhile True:\r\n    prompt = input(\"👦: \")\r\n    try:\r\n        resp = Client.create_completion(\"MODEL\", prompt)\r\n        print(f\"🤖: {resp}\")\r\n    except Exception as e:\r\n        print(f\"🤖: {e}\")\r\n```\r\n\r\n### Image Generation:\r\n\r\n**Async:**\r\n\r\n```python\r\nfrom VortexGPT import AsyncClient\r\nfrom PIL import Image\r\nfrom io import BytesIO\r\nfrom asyncio import run\r\n\r\n\r\nasync def main():\r\n    while True:\r\n        prompt = input(\"👦: \")\r\n        try:\r\n            resp = await AsyncClient.create_generation(\"MODEL\", prompt)\r\n            Image.open(BytesIO(resp)).show()\r\n            print(f\"🤖: Image shown.\")\r\n        except Exception as e:\r\n            print(f\"🤖: {e}\")\r\n\r\n\r\nrun(main())\r\n```\r\n\r\n**Non-Async:**\r\n\r\n```python\r\nfrom VortexGPT import Client\r\nfrom PIL import Image\r\nfrom io import BytesIO\r\n\r\nwhile True:\r\n    prompt = input(\"👦: \")\r\n    try:\r\n        resp = Client.create_generation(\"MODEL\", prompt)\r\n        Image.open(BytesIO(resp)).show()\r\n        print(f\"🤖: Image shown.\")\r\n    except Exception as e:\r\n        print(f\"🤖: {e}\")\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKritik-helpingai%2FVORTEX","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKritik-helpingai%2FVORTEX","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKritik-helpingai%2FVORTEX/lists"}