{"id":13456739,"url":"https://github.com/xtekky/chatgpt-clone","last_synced_at":"2025-05-14T15:02:56.922Z","repository":{"id":153749741,"uuid":"629462321","full_name":"xtekky/chatgpt-clone","owner":"xtekky","description":"ChatGPT interface with better UI ","archived":false,"fork":false,"pushed_at":"2024-05-22T17:08:45.000Z","size":174,"stargazers_count":3520,"open_issues_count":58,"forks_count":1038,"subscribers_count":48,"default_branch":"main","last_synced_at":"2025-04-12T13:57:34.971Z","etag":null,"topics":["chatgpt","chatgpt-api","chatgpt-app","chatgpt-clone","gpt-4","gpt-4-api","gpt-interface","gpt3","gpt4","gpt4-api","gpt4all","interface","language","language-model","site","ui"],"latest_commit_sha":null,"homepage":"https://t.me/g4f_channel","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/xtekky.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-18T11:13:00.000Z","updated_at":"2025-04-12T12:27:46.000Z","dependencies_parsed_at":"2024-01-06T15:03:41.375Z","dependency_job_id":"32940d79-4133-41ab-976c-1f8fc58ade2f","html_url":"https://github.com/xtekky/chatgpt-clone","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xtekky%2Fchatgpt-clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xtekky%2Fchatgpt-clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xtekky%2Fchatgpt-clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xtekky%2Fchatgpt-clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xtekky","download_url":"https://codeload.github.com/xtekky/chatgpt-clone/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254168679,"owners_count":22026206,"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":["chatgpt","chatgpt-api","chatgpt-app","chatgpt-clone","gpt-4","gpt-4-api","gpt-interface","gpt3","gpt4","gpt4-api","gpt4all","interface","language","language-model","site","ui"],"created_at":"2024-07-31T08:01:26.911Z","updated_at":"2025-05-14T15:02:56.851Z","avatar_url":"https://github.com/xtekky.png","language":"Python","funding_links":[],"categories":["Python","HarmonyOS","A01_文本生成_文本对话","NLP","Chat UIs","ChatGPT-based applications for regular users and specialized problems","Repos"],"sub_categories":["Windows Manager","大语言对话模型及数据","Other sdk/libraries"],"readme":"Development of this repository is currently in a halt, due to lack of time. Updates are comming end of June.\n\nworking again ; ) \nI am very busy at the moment so I would be very thankful for contributions and PR's\n\n## To do\n- [x] Double confirm when deleting conversation\n- [x] remember user preferences\n- [x] theme changer\n- [ ] loading / exporting a conversation\n- [ ] speech output and input (elevenlabs; ex: https://github.com/cogentapps/chat-with-gpt)\n- [ ] load files, ex: https://github.com/mayooear/gpt4-pdf-chatbot-langchain\n- [ ] better documentation\n- [ ] use react / faster backend language ? (newbies may be more confused and discouraged to use it)\n \n# ChatGPT Clone\nfeel free to improve the code / suggest improvements\n\n\u003cimg width=\"1470\" alt=\"image\" src=\"https://user-images.githubusercontent.com/98614666/232768610-fdeada85-3d21-4cf9-915e-a0ec9f3b7a9f.png\"\u003e\n\n\n## Getting Started\nTo get started with this project, you'll need to clone the repository and set up a virtual environment. This will allow you to install the required dependencies without affecting your system-wide Python installation.\n\n### Prequisites\nBefore you can set up a virtual environment, you'll need to have Python installed on your system. You can download Python from the official website: https://www.python.org/downloads/\n\n### Cloning the Repository\nRun the following command to clone the repository:\n```\ngit clone https://github.com/xtekky/chatgpt-clone.git\n```\n\n### Setting up a Virtual Environment\nTo set up a virtual environment, follow these steps:\n\n1. Navigate to the root directory of your project.\n```\ncd chatgpt-clone\n```\n2. Run the following command to create a new virtual environment:\n```\npython -m venv venv\n```\n3.  Activate the virtual environment by running the following command:\n```\nsource venv/bin/activate\n```\nIf you are using fish shell, the command will be slightly different:\n```\nsource venv/bin/activate.fish\n```\nIf you're on Windows, the command will be slightly different:\n```\nvenv\\Scripts\\activate\n```\n4. Install the required dependencies by running the following command:\n```\npip install -r requirements.txt\n```\n\n### Configure the Application\nTo configure the application, there are a few properties that can be set either via the environment or via config.json.  The environment variable takes priority.\n\n| Field               | Env Variable    | config.json     | examples                                           |\n|---------------------|-----------------|-----------------|----------------------------------------------------|\n| The OpenAI Api Key  | OPENAI_API_KEY  | openai_key      | sk-...                                             \n| The OpenAI Base URL | OPENAI_API_BASE | openai_api_base | https://api.openai.com \u003cbr\u003e http://my-reverse-proxy/ \n\nUse the Base URL if you need to run your queries through a reverse proxy (like [this one](https://github.com/stulzq/azure-openai-proxy) which will run your queries through Azure's OpenAI endpoints )\n\n\n### Running the Application\nTo run the application, make sure the virtual environment is active and run the following command:\n```\npython run.py\n```\n\n### Docker\nThe easiest way to run ChatGPT Clone is by using docker\n```\ndocker-compose up\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxtekky%2Fchatgpt-clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxtekky%2Fchatgpt-clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxtekky%2Fchatgpt-clone/lists"}