├── .github └── workflows │ └── release.yml ├── .gitignore ├── README.md ├── blog-recommendation-ts ├── .gitignore ├── README.md ├── blog_list.txt ├── migrations.sql ├── package-lock.json ├── package.json ├── runtime-config-template.toml ├── spin.toml ├── src │ ├── index.ts │ └── utils.ts ├── tsconfig.json ├── update_embeddings.sh └── webpack.config.js ├── code-generator-rs ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── api │ ├── Cargo.lock │ ├── Cargo.toml │ ├── spin.toml │ └── src │ │ └── lib.rs └── client │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs ├── haiku-generator-assets ├── dynamic.js └── index.html ├── haiku-generator-rs ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── spin.toml └── src │ └── lib.rs ├── haiku-generator-ts ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── spin.toml ├── src │ └── index.ts ├── tsconfig.json └── webpack.config.js ├── helloworld-py ├── .gitignore ├── Pipfile ├── README.md ├── app.py └── spin.toml ├── helloworld-rs ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── spin.toml └── src │ └── lib.rs ├── helloworld-ts ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── runtime-config.toml ├── spin.toml ├── src │ └── index.ts ├── tsconfig.json └── webpack.config.js ├── newsfeeder-ts ├── .gitignore ├── README.md ├── newsfeeder.yaml ├── package-lock.json ├── package.json ├── spin.toml ├── src │ └── index.ts ├── tsconfig.json └── webpack.config.js ├── openapi-rs ├── .gitignore ├── README.md ├── api │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── openapi.yml ├── spin.toml └── swagger-ui │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.css │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-initializer.js │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-es-bundle-core.js │ ├── swagger-ui-es-bundle-core.js.map │ ├── swagger-ui-es-bundle.js │ ├── swagger-ui-es-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map ├── sentiment-analysis-assets ├── dynamic.js └── index.html ├── sentiment-analysis-py ├── .gitignore ├── README.md ├── app.py ├── assets │ ├── dynamic.js │ └── index.html ├── requirements.txt └── spin.toml ├── sentiment-analysis-rs ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets │ ├── dynamic.js │ └── index.html ├── spin.toml └── src │ └── lib.rs ├── sentiment-analysis-ts ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── spin.toml ├── src │ └── index.ts ├── tsconfig.json └── webpack.config.js └── silly-walk-ts ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── spin.toml ├── src └── index.ts ├── tsconfig.json └── webpack.config.js /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | **/runtime-config.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/README.md -------------------------------------------------------------------------------- /blog-recommendation-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | target 4 | .spin/ 5 | runtime-config.toml -------------------------------------------------------------------------------- /blog-recommendation-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/README.md -------------------------------------------------------------------------------- /blog-recommendation-ts/blog_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/blog_list.txt -------------------------------------------------------------------------------- /blog-recommendation-ts/migrations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/migrations.sql -------------------------------------------------------------------------------- /blog-recommendation-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/package-lock.json -------------------------------------------------------------------------------- /blog-recommendation-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/package.json -------------------------------------------------------------------------------- /blog-recommendation-ts/runtime-config-template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/runtime-config-template.toml -------------------------------------------------------------------------------- /blog-recommendation-ts/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/spin.toml -------------------------------------------------------------------------------- /blog-recommendation-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/src/index.ts -------------------------------------------------------------------------------- /blog-recommendation-ts/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/src/utils.ts -------------------------------------------------------------------------------- /blog-recommendation-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/tsconfig.json -------------------------------------------------------------------------------- /blog-recommendation-ts/update_embeddings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/update_embeddings.sh -------------------------------------------------------------------------------- /blog-recommendation-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/blog-recommendation-ts/webpack.config.js -------------------------------------------------------------------------------- /code-generator-rs/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .spin/ 3 | -------------------------------------------------------------------------------- /code-generator-rs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/Cargo.lock -------------------------------------------------------------------------------- /code-generator-rs/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | 3 | members = ["api", "client"] 4 | -------------------------------------------------------------------------------- /code-generator-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/README.md -------------------------------------------------------------------------------- /code-generator-rs/api/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/api/Cargo.lock -------------------------------------------------------------------------------- /code-generator-rs/api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/api/Cargo.toml -------------------------------------------------------------------------------- /code-generator-rs/api/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/api/spin.toml -------------------------------------------------------------------------------- /code-generator-rs/api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/api/src/lib.rs -------------------------------------------------------------------------------- /code-generator-rs/client/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /code-generator-rs/client/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/client/Cargo.lock -------------------------------------------------------------------------------- /code-generator-rs/client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/client/Cargo.toml -------------------------------------------------------------------------------- /code-generator-rs/client/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/code-generator-rs/client/src/main.rs -------------------------------------------------------------------------------- /haiku-generator-assets/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-assets/dynamic.js -------------------------------------------------------------------------------- /haiku-generator-assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-assets/index.html -------------------------------------------------------------------------------- /haiku-generator-rs/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .spin/ 3 | -------------------------------------------------------------------------------- /haiku-generator-rs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-rs/Cargo.lock -------------------------------------------------------------------------------- /haiku-generator-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-rs/Cargo.toml -------------------------------------------------------------------------------- /haiku-generator-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-rs/README.md -------------------------------------------------------------------------------- /haiku-generator-rs/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-rs/spin.toml -------------------------------------------------------------------------------- /haiku-generator-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-rs/src/lib.rs -------------------------------------------------------------------------------- /haiku-generator-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | target 4 | .spin/ -------------------------------------------------------------------------------- /haiku-generator-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/README.md -------------------------------------------------------------------------------- /haiku-generator-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/package-lock.json -------------------------------------------------------------------------------- /haiku-generator-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/package.json -------------------------------------------------------------------------------- /haiku-generator-ts/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/spin.toml -------------------------------------------------------------------------------- /haiku-generator-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/src/index.ts -------------------------------------------------------------------------------- /haiku-generator-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/tsconfig.json -------------------------------------------------------------------------------- /haiku-generator-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/haiku-generator-ts/webpack.config.js -------------------------------------------------------------------------------- /helloworld-py/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.wasm 3 | .spin -------------------------------------------------------------------------------- /helloworld-py/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-py/Pipfile -------------------------------------------------------------------------------- /helloworld-py/README.md: -------------------------------------------------------------------------------- 1 | # A simple Spin HTTP component in Python -------------------------------------------------------------------------------- /helloworld-py/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-py/app.py -------------------------------------------------------------------------------- /helloworld-py/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-py/spin.toml -------------------------------------------------------------------------------- /helloworld-rs/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .spin/ 3 | -------------------------------------------------------------------------------- /helloworld-rs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-rs/Cargo.lock -------------------------------------------------------------------------------- /helloworld-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-rs/Cargo.toml -------------------------------------------------------------------------------- /helloworld-rs/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-rs/spin.toml -------------------------------------------------------------------------------- /helloworld-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-rs/src/lib.rs -------------------------------------------------------------------------------- /helloworld-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | target 4 | .spin/ -------------------------------------------------------------------------------- /helloworld-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/README.md -------------------------------------------------------------------------------- /helloworld-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/package-lock.json -------------------------------------------------------------------------------- /helloworld-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/package.json -------------------------------------------------------------------------------- /helloworld-ts/runtime-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/runtime-config.toml -------------------------------------------------------------------------------- /helloworld-ts/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/spin.toml -------------------------------------------------------------------------------- /helloworld-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/src/index.ts -------------------------------------------------------------------------------- /helloworld-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/tsconfig.json -------------------------------------------------------------------------------- /helloworld-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/helloworld-ts/webpack.config.js -------------------------------------------------------------------------------- /newsfeeder-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | target 4 | .spin/ -------------------------------------------------------------------------------- /newsfeeder-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/README.md -------------------------------------------------------------------------------- /newsfeeder-ts/newsfeeder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/newsfeeder.yaml -------------------------------------------------------------------------------- /newsfeeder-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/package-lock.json -------------------------------------------------------------------------------- /newsfeeder-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/package.json -------------------------------------------------------------------------------- /newsfeeder-ts/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/spin.toml -------------------------------------------------------------------------------- /newsfeeder-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/src/index.ts -------------------------------------------------------------------------------- /newsfeeder-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/tsconfig.json -------------------------------------------------------------------------------- /newsfeeder-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/newsfeeder-ts/webpack.config.js -------------------------------------------------------------------------------- /openapi-rs/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .spin/ 3 | swagger-ui/openapi.yml -------------------------------------------------------------------------------- /openapi-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/README.md -------------------------------------------------------------------------------- /openapi-rs/api/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/api/Cargo.lock -------------------------------------------------------------------------------- /openapi-rs/api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/api/Cargo.toml -------------------------------------------------------------------------------- /openapi-rs/api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/api/src/lib.rs -------------------------------------------------------------------------------- /openapi-rs/openapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/openapi.yml -------------------------------------------------------------------------------- /openapi-rs/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/spin.toml -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/index.css -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/index.html -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/oauth2-redirect.html -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-initializer.js -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-es-bundle-core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-es-bundle-core.js.map -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-es-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-es-bundle.js.map -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /openapi-rs/swagger-ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/openapi-rs/swagger-ui/swagger-ui.js.map -------------------------------------------------------------------------------- /sentiment-analysis-assets/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-assets/dynamic.js -------------------------------------------------------------------------------- /sentiment-analysis-assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-assets/index.html -------------------------------------------------------------------------------- /sentiment-analysis-py/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.wasm 3 | .spin -------------------------------------------------------------------------------- /sentiment-analysis-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-py/README.md -------------------------------------------------------------------------------- /sentiment-analysis-py/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-py/app.py -------------------------------------------------------------------------------- /sentiment-analysis-py/assets/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-py/assets/dynamic.js -------------------------------------------------------------------------------- /sentiment-analysis-py/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-py/assets/index.html -------------------------------------------------------------------------------- /sentiment-analysis-py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-py/requirements.txt -------------------------------------------------------------------------------- /sentiment-analysis-py/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-py/spin.toml -------------------------------------------------------------------------------- /sentiment-analysis-rs/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .spin/ 3 | -------------------------------------------------------------------------------- /sentiment-analysis-rs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/Cargo.lock -------------------------------------------------------------------------------- /sentiment-analysis-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/Cargo.toml -------------------------------------------------------------------------------- /sentiment-analysis-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/README.md -------------------------------------------------------------------------------- /sentiment-analysis-rs/assets/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/assets/dynamic.js -------------------------------------------------------------------------------- /sentiment-analysis-rs/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/assets/index.html -------------------------------------------------------------------------------- /sentiment-analysis-rs/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/spin.toml -------------------------------------------------------------------------------- /sentiment-analysis-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-rs/src/lib.rs -------------------------------------------------------------------------------- /sentiment-analysis-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | target 4 | .spin/ -------------------------------------------------------------------------------- /sentiment-analysis-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/README.md -------------------------------------------------------------------------------- /sentiment-analysis-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/package-lock.json -------------------------------------------------------------------------------- /sentiment-analysis-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/package.json -------------------------------------------------------------------------------- /sentiment-analysis-ts/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/spin.toml -------------------------------------------------------------------------------- /sentiment-analysis-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/src/index.ts -------------------------------------------------------------------------------- /sentiment-analysis-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/tsconfig.json -------------------------------------------------------------------------------- /sentiment-analysis-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/sentiment-analysis-ts/webpack.config.js -------------------------------------------------------------------------------- /silly-walk-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | target 4 | .spin/ -------------------------------------------------------------------------------- /silly-walk-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/README.md -------------------------------------------------------------------------------- /silly-walk-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/package-lock.json -------------------------------------------------------------------------------- /silly-walk-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/package.json -------------------------------------------------------------------------------- /silly-walk-ts/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/spin.toml -------------------------------------------------------------------------------- /silly-walk-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/src/index.ts -------------------------------------------------------------------------------- /silly-walk-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/tsconfig.json -------------------------------------------------------------------------------- /silly-walk-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fermyon/ai-examples/HEAD/silly-walk-ts/webpack.config.js --------------------------------------------------------------------------------