├── .env.sample ├── .env.sample-db ├── .gitignore ├── README.md ├── backend ├── .dockerignore ├── Dockerfile ├── railway.json ├── requirements.txt └── src │ ├── api │ ├── __init__.py │ ├── ai │ │ ├── __init__.py │ │ ├── agents.py │ │ ├── assistants.py │ │ ├── llms.py │ │ ├── schemas.py │ │ ├── services.py │ │ └── tools.py │ ├── chat │ │ ├── __init__.py │ │ ├── models.py │ │ └── routing.py │ ├── db.py │ └── myemailer │ │ ├── __init__.py │ │ ├── gmail_imap_parser.py │ │ ├── inbox_reader.py │ │ └── sender.py │ ├── ignoreme │ └── test.txt │ └── main.py ├── compose.yaml ├── docker-commands.md └── static_html ├── src ├── abc.html ├── about.html ├── contact.html └── index.html └── static.Dockerfile /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/.env.sample -------------------------------------------------------------------------------- /.env.sample-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/.env.sample-db -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- 1 | src/ignoreme -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/railway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/railway.json -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/src/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/api/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/api/ai/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/ai/agents.py -------------------------------------------------------------------------------- /backend/src/api/ai/assistants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/ai/assistants.py -------------------------------------------------------------------------------- /backend/src/api/ai/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/ai/llms.py -------------------------------------------------------------------------------- /backend/src/api/ai/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/ai/schemas.py -------------------------------------------------------------------------------- /backend/src/api/ai/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/ai/services.py -------------------------------------------------------------------------------- /backend/src/api/ai/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/ai/tools.py -------------------------------------------------------------------------------- /backend/src/api/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/api/chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/chat/models.py -------------------------------------------------------------------------------- /backend/src/api/chat/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/chat/routing.py -------------------------------------------------------------------------------- /backend/src/api/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/db.py -------------------------------------------------------------------------------- /backend/src/api/myemailer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/api/myemailer/gmail_imap_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/myemailer/gmail_imap_parser.py -------------------------------------------------------------------------------- /backend/src/api/myemailer/inbox_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/myemailer/inbox_reader.py -------------------------------------------------------------------------------- /backend/src/api/myemailer/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/api/myemailer/sender.py -------------------------------------------------------------------------------- /backend/src/ignoreme/test.txt: -------------------------------------------------------------------------------- 1 | sdfsd -------------------------------------------------------------------------------- /backend/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/backend/src/main.py -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/compose.yaml -------------------------------------------------------------------------------- /docker-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/docker-commands.md -------------------------------------------------------------------------------- /static_html/src/abc.html: -------------------------------------------------------------------------------- 1 |

Abc

-------------------------------------------------------------------------------- /static_html/src/about.html: -------------------------------------------------------------------------------- 1 |

Hello about

-------------------------------------------------------------------------------- /static_html/src/contact.html: -------------------------------------------------------------------------------- 1 |

Contact us

-------------------------------------------------------------------------------- /static_html/src/index.html: -------------------------------------------------------------------------------- 1 |

Hello world!

-------------------------------------------------------------------------------- /static_html/static.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/build-deploy-ai-agent-python-docker/HEAD/static_html/static.Dockerfile --------------------------------------------------------------------------------