├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config.py ├── images └── resume.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/config.py -------------------------------------------------------------------------------- /images/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/images/resume.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawheel/PydanticAi-MultiModal/HEAD/requirements.txt --------------------------------------------------------------------------------