├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .dockerignore ├── .env.example ├── .gitattributes ├── .gitignore ├── __init__.py ├── dockerfile ├── domain_status.json ├── gcp_deploy.sh ├── interface │ └── chat-bubble.js ├── main.py ├── models.py ├── package-lock.json ├── package.json ├── poetry.lock ├── pyproject.toml ├── scraper │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ └── spider.py ├── scrapy.cfg ├── static │ └── chat-bubble.js └── webpack.config.js ├── demo.html └── docker-compose.yml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/README.md -------------------------------------------------------------------------------- /app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/.dockerignore -------------------------------------------------------------------------------- /app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/.env.example -------------------------------------------------------------------------------- /app/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/.gitattributes -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/dockerfile -------------------------------------------------------------------------------- /app/domain_status.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app/gcp_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/gcp_deploy.sh -------------------------------------------------------------------------------- /app/interface/chat-bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/interface/chat-bubble.js -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/models.py -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/package.json -------------------------------------------------------------------------------- /app/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/poetry.lock -------------------------------------------------------------------------------- /app/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/pyproject.toml -------------------------------------------------------------------------------- /app/scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/__init__.py -------------------------------------------------------------------------------- /app/scraper/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/items.py -------------------------------------------------------------------------------- /app/scraper/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/middlewares.py -------------------------------------------------------------------------------- /app/scraper/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/pipelines.py -------------------------------------------------------------------------------- /app/scraper/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/settings.py -------------------------------------------------------------------------------- /app/scraper/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/spiders/__init__.py -------------------------------------------------------------------------------- /app/scraper/spiders/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scraper/spiders/spider.py -------------------------------------------------------------------------------- /app/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/scrapy.cfg -------------------------------------------------------------------------------- /app/static/chat-bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/static/chat-bubble.js -------------------------------------------------------------------------------- /app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/app/webpack.config.js -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/demo.html -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phospho-app/ai-chat-bubble/HEAD/docker-compose.yml --------------------------------------------------------------------------------