{"id":30257689,"url":"https://github.com/guspaz0/ai-chat-client","last_synced_at":"2025-12-30T21:45:47.661Z","repository":{"id":307018654,"uuid":"1027730612","full_name":"guspaz0/ai-chat-client","owner":"guspaz0","description":"Cliente de escritorio multiplatforma para chatear con modelos LLM de IA de Ollama.","archived":false,"fork":false,"pushed_at":"2025-07-29T00:34:09.000Z","size":456,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"development","last_synced_at":"2025-07-29T02:33:58.531Z","etag":null,"topics":["ai-chat","electron","highlight","md-editor","react","shadcdn","tailwind","typescript","vite"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/guspaz0.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null}},"created_at":"2025-07-28T12:55:42.000Z","updated_at":"2025-07-29T00:34:12.000Z","dependencies_parsed_at":"2025-07-29T02:44:10.772Z","dependency_job_id":null,"html_url":"https://github.com/guspaz0/ai-chat-client","commit_stats":null,"previous_names":["guspaz0/ai-chat-client"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/guspaz0/ai-chat-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guspaz0%2Fai-chat-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guspaz0%2Fai-chat-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guspaz0%2Fai-chat-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guspaz0%2Fai-chat-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guspaz0","download_url":"https://codeload.github.com/guspaz0/ai-chat-client/tar.gz/refs/heads/development","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guspaz0%2Fai-chat-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270600752,"owners_count":24614250,"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","status":"online","status_checked_at":"2025-08-15T02:00:12.559Z","response_time":110,"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-chat","electron","highlight","md-editor","react","shadcdn","tailwind","typescript","vite"],"created_at":"2025-08-15T16:39:52.500Z","updated_at":"2025-12-30T21:45:47.622Z","avatar_url":"https://github.com/guspaz0.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    AI Chat Client\n\u003c/p\u003e\n\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"resources/build/icon.svg\" width=\"64\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    A Modern desktop app multiplaform for chat with LLM models and AI assistants like Ollama.\n\u003c/p\u003e\n\n![Demo](resources/demo.png)\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n## Features\n\n- 🚀 Electron - Cross-platform desktop application framework\n- ⚛️ React - Component-based UI library\n- 📦 TypeScript - Type-safe JavaScript\n- 🎨 Shadcn UI - Beautiful and accessible component library\n- 🎨 TailwindCSS - Utility-first CSS framework\n- ⚡ Vite - Lightning-fast build tool\n- 🔥 Fast HMR - Hot Module Replacement\n- 🎨 Dark/Light Mode - Built-in theme switching\n- 🪟 Custom Window \u0026 Titlebar - Professional-looking window with custom titlebar \u0026 file menus\n- 📐 Clean Project Structure - Separation of main and renderer processes\n- 🧩 Path Aliases – Keep your code organized\n- 🛠️ Electron Builder - Configured for packaging applications\n\n\u003cbr /\u003e\n\n\n## Project Structure\n\n\u003c!-- prettier-ignore-start --\u003e\n```markdown\n├── app/                        # Renderer process files\n│   ├── assets/                 # Static assets (images, fonts, etc)\n│   ├── components/             # React components\n│   │   ├── App.tsx             # Application component\n│   ├── styles/                 # CSS and Tailwind files\n│   │   ├── app.css             # App stylesheet\n│   │   └── tailwind.css        # Tailwind stylesheet\n│   ├── index.html              # Entry HTML file\n│   └── renderer.tsx            # Renderer process entry\n├── lib/                        # Shared library code\n│   ├── main/                   # Main process code\n│   │   ├── index.ts            # Main entry point for Electron\n│   │   └── ...                 # Other main process modules\n│   ├── preload/                # Preload scripts for IPC\n│   │   ├── index.ts            # Preload script entry\n│   │   └── api.ts              # Exposed API for renderer\n│   └── window/                 # Custom window implementation\n├── resources/                  # Build resources\n├── .eslintrc                   # ESLint configuration\n├── .prettierrc                 # Prettier format configuration\n├── electron-builder.yml        # Electron builder configuration\n├── electron.vite.config.ts     # Vite configuration for Electron\n├── package.json                # Project dependencies and scripts\n└── tsconfig.node.json          # Main process tsconfig\n└── tsconfig.web.json           # Renderer process tsconfig\n\n```\n\u003c!-- prettier-ignore-end --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguspaz0%2Fai-chat-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguspaz0%2Fai-chat-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguspaz0%2Fai-chat-client/lists"}