├── .gitignore ├── README.md └── examples ├── llm_agents ├── README.md └── llm_agents.rb ├── plugin ├── README.md ├── app.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── e12c6b6efe21_initial_migration.py ├── plugin_chain.py ├── requirements.txt └── test.py └── replicate_deploy ├── .python-version ├── README.md ├── cog.yaml ├── poetry.lock ├── predict.py ├── pyproject.toml ├── scripts ├── download_and_prepare_model.py └── tensorize_model.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/README.md -------------------------------------------------------------------------------- /examples/llm_agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/llm_agents/README.md -------------------------------------------------------------------------------- /examples/llm_agents/llm_agents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/llm_agents/llm_agents.rb -------------------------------------------------------------------------------- /examples/plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/README.md -------------------------------------------------------------------------------- /examples/plugin/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/app.py -------------------------------------------------------------------------------- /examples/plugin/migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /examples/plugin/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/migrations/alembic.ini -------------------------------------------------------------------------------- /examples/plugin/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/migrations/env.py -------------------------------------------------------------------------------- /examples/plugin/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/migrations/script.py.mako -------------------------------------------------------------------------------- /examples/plugin/migrations/versions/e12c6b6efe21_initial_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/migrations/versions/e12c6b6efe21_initial_migration.py -------------------------------------------------------------------------------- /examples/plugin/plugin_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/plugin_chain.py -------------------------------------------------------------------------------- /examples/plugin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/requirements.txt -------------------------------------------------------------------------------- /examples/plugin/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/plugin/test.py -------------------------------------------------------------------------------- /examples/replicate_deploy/.python-version: -------------------------------------------------------------------------------- 1 | 3.10.9 2 | -------------------------------------------------------------------------------- /examples/replicate_deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/README.md -------------------------------------------------------------------------------- /examples/replicate_deploy/cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/cog.yaml -------------------------------------------------------------------------------- /examples/replicate_deploy/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/poetry.lock -------------------------------------------------------------------------------- /examples/replicate_deploy/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/predict.py -------------------------------------------------------------------------------- /examples/replicate_deploy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/pyproject.toml -------------------------------------------------------------------------------- /examples/replicate_deploy/scripts/download_and_prepare_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/scripts/download_and_prepare_model.py -------------------------------------------------------------------------------- /examples/replicate_deploy/scripts/tensorize_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/scripts/tensorize_model.py -------------------------------------------------------------------------------- /examples/replicate_deploy/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedcheng/ai-hackers-field-manual/HEAD/examples/replicate_deploy/test.py --------------------------------------------------------------------------------