├── .DS_Store ├── .idea └── .idea.homeai.dir │ └── .idea │ ├── .gitignore │ ├── indexLayout.xml │ └── vcs.xml ├── README.md ├── backend ├── .DS_Store ├── .gitignore ├── README.md ├── app │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── routers │ │ │ ├── __init__.py │ │ │ └── chat.py │ ├── context.py │ └── engine │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── context.py │ │ ├── generate.py │ │ ├── index.py │ │ └── loader.py ├── data │ └── 1952-Camargo-Drive │ │ ├── 20. PropertyDetails_1952_Camargo_Dr_San_Jose.pdf │ │ └── 4. Home Inspection Report - Homeguard 6.17.22.pdf ├── main.py ├── poetry.lock ├── pyproject.toml └── tests │ └── __init__.py └── frontend ├── .env ├── .gitignore ├── README.md ├── app ├── components │ ├── chat-section.tsx │ ├── header.tsx │ ├── transform.ts │ └── ui │ │ └── chat │ │ ├── chat-avatar.tsx │ │ ├── chat-input.tsx │ │ ├── chat-item.tsx │ │ ├── chat-messages.tsx │ │ └── index.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── llama.png ├── tailwind.config.ts └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.idea.homeai.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/.idea/.idea.homeai.dir/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.homeai.dir/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/.idea/.idea.homeai.dir/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.homeai.dir/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/.idea/.idea.homeai.dir/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/README.md -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | storage 3 | .env 4 | -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/routers/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/api/routers/chat.py -------------------------------------------------------------------------------- /backend/app/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/context.py -------------------------------------------------------------------------------- /backend/app/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/engine/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/engine/constants.py -------------------------------------------------------------------------------- /backend/app/engine/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/engine/context.py -------------------------------------------------------------------------------- /backend/app/engine/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/engine/generate.py -------------------------------------------------------------------------------- /backend/app/engine/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/engine/index.py -------------------------------------------------------------------------------- /backend/app/engine/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/app/engine/loader.py -------------------------------------------------------------------------------- /backend/data/1952-Camargo-Drive/20. PropertyDetails_1952_Camargo_Dr_San_Jose.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/data/1952-Camargo-Drive/20. PropertyDetails_1952_Camargo_Dr_San_Jose.pdf -------------------------------------------------------------------------------- /backend/data/1952-Camargo-Drive/4. Home Inspection Report - Homeguard 6.17.22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/data/1952-Camargo-Drive/4. Home Inspection Report - Homeguard 6.17.22.pdf -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/poetry.lock -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app/components/chat-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/chat-section.tsx -------------------------------------------------------------------------------- /frontend/app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/header.tsx -------------------------------------------------------------------------------- /frontend/app/components/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/transform.ts -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/ui/chat/chat-avatar.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/ui/chat/chat-input.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/ui/chat/chat-item.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/chat-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/ui/chat/chat-messages.tsx -------------------------------------------------------------------------------- /frontend/app/components/ui/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/components/ui/chat/index.ts -------------------------------------------------------------------------------- /frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/favicon.ico -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/public/llama.png -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2sunflower33/homeai/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------