{"id":27888563,"url":"https://github.com/toth2000/convoai","last_synced_at":"2026-05-05T13:40:59.453Z","repository":{"id":192448745,"uuid":"686739738","full_name":"toth2000/convoAi","owner":"toth2000","description":"A website to interact with a custom language model","archived":false,"fork":false,"pushed_at":"2023-09-14T16:26:14.000Z","size":1331,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-02T07:39:03.469Z","etag":null,"topics":["expressjs","html-css","javascript","nodejs","react","websocket"],"latest_commit_sha":null,"homepage":"https://convo-ai-chat.vercel.app","language":"JavaScript","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/toth2000.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2023-09-03T19:31:40.000Z","updated_at":"2023-09-14T15:49:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"82e6fc64-3197-425d-9117-e8cd21689a12","html_url":"https://github.com/toth2000/convoAi","commit_stats":null,"previous_names":["toth2000/convoai"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/toth2000/convoAi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toth2000%2FconvoAi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toth2000%2FconvoAi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toth2000%2FconvoAi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toth2000%2FconvoAi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toth2000","download_url":"https://codeload.github.com/toth2000/convoAi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toth2000%2FconvoAi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32652380,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["expressjs","html-css","javascript","nodejs","react","websocket"],"created_at":"2025-05-05T09:09:43.518Z","updated_at":"2026-05-05T13:40:59.431Z","avatar_url":"https://github.com/toth2000.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ConvoAi Repository\n\nThis is the offical repository of ConvoAi, it provides a platform to interact with a custom AI model easily.\n\nWebsite: https://convo-ai-chat.vercel.app \u003cbr\u003e\n\n![](https://raw.githubusercontent.com/toth2000/convoAi/master/screenshots/convo-ai.png)\n\n\n---\n\n#### Generate Backend URL\n\nTo generate the backend URL that is required as input in the website, please visit the link below and follow the steps mentioned there.\nhttps://colab.research.google.com/drive/1K2_KumvSVtG3tNyiSOhI81h2tqn_GxDN\n\n![](https://raw.githubusercontent.com/toth2000/convoAi/master/screenshots/google_collab.png)\n\n---\n\n# Features\n- Ability to chat with AI model \n- Quick Responses\n- Ability to create multiple chat at the same time\n- Good looking UI\n- Fully responsive for various screen size\n- Response Generation Indication (Showing typing dot animation)\n\n![](https://raw.githubusercontent.com/toth2000/convoAi/master/screenshots/chat_screen_laptop.png)\n\n# Upcoming Feature\n- Server implementation to enable :\n    - User Authentication (Login And Sign Up)\n    - Storing Messages in Database to enable easy access later\n- Voice Typing (Delayed as there are not free Speech-to-text API)\n\n\n---\n## Folder Structure\nThe ``/frontend`` directory contains the ReactJs codebase that is hosted in the vercel.\n\nThe ``/server`` directory contains the NodeJs server codebase.\n\n\n## Requirements\n\nTo run the website on you local device, you will only need NodeJs installed in your environement.\n\n### Node\n- #### Node installation on Windows\n\n  Just go on [official Node.js website](https://nodejs.org/) and download the installer.\nAlso, be sure to have `git` available in your PATH, `npm` might need it (You can find git [here](https://git-scm.com/)).\n\n- #### Node installation on Ubuntu\n\n  You can install nodejs and npm easily with apt install, just run the following commands.\n\n      $ sudo apt install nodejs\n      $ sudo apt install npm\n\n- #### Other Operating Systems\n  You can find more information about the installation on the [official Node.js website](https://nodejs.org/) and the [official NPM website](https://npmjs.org/).\n\nIf the installation was successful, you should be able to run the following command.\n\n    $ node --version\n    v8.11.3\n\n    $ npm --version\n    6.1.0\n\nIf you need to update `npm`, you can make it using `npm`! Cool right? After running the following command, just open again the command line and be happy.\n\n    $ npm install npm -g\n\n\n---\n\n## Install\n\n    $ git clone https://github.com/toth2000/convoAi\n    $ cd convoAi\n\n#### To Run the Website locally\n    $ cd frontend\n    $ npm install\n    $ npm start\n\n#### To Run the Backend Server locally\n    $ cd server\n    $ npm install\n    $ npm start\n\n\n## Contribution guidelines\n\nPlease refer to our [Contribution Guide](CONTRIBUTING.md) for contributing to this project. And remeber no contribution is small,  every contribution matters.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoth2000%2Fconvoai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoth2000%2Fconvoai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoth2000%2Fconvoai/lists"}