├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── aify ├── __init__.py ├── __main__.py ├── _auth.py ├── _entry.py ├── _env.py ├── _error.py ├── _logging.py ├── _program.py ├── _web_template.py ├── embeddings.py ├── embeddings_openai.py ├── embeddings_sentence_transformers.py ├── memories │ ├── __init__.py │ └── google_cloud_datastore.py └── memory.py ├── bin └── aify ├── docs ├── app_template.md ├── assets │ └── images │ │ └── screenshots │ │ ├── aify_webui_new_start_1_screenshot.png │ │ ├── aify_webui_new_start_screenshot.png │ │ └── aify_webui_screenshot.png ├── customized │ └── main.html ├── deploy_to_clouds │ └── google_appengine.md ├── dive_into_apps.md ├── enhance_with_python.md ├── examples │ ├── chatbot.md │ └── llm_generation.md ├── getting_started.md ├── index.md └── rest_api.md ├── examples ├── .env ├── .gitignore ├── chatbot.yml ├── comments.yml ├── deploy-to-google-appengine │ ├── app.yaml │ └── index.yaml ├── emoji.yml ├── helpers.py ├── indie_hacker.yml ├── llama.yml └── translator.yml ├── js ├── .gitignore ├── build.sh ├── config-overrides.js ├── package-lock.json ├── package.json ├── public │ └── index.html └── src │ ├── aify.js │ ├── chat.js │ ├── index.css │ └── index.js ├── mkdocs.yml ├── requirements.txt ├── requirements_dev.txt ├── setup.py └── webui ├── .gitignore ├── __init__.py └── templates ├── auth.html ├── basic.html └── index.html /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | .env 4 | __pycache__ 5 | *.egg-info 6 | build 7 | dist 8 | site 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/README.md -------------------------------------------------------------------------------- /aify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/__init__.py -------------------------------------------------------------------------------- /aify/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/__main__.py -------------------------------------------------------------------------------- /aify/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_auth.py -------------------------------------------------------------------------------- /aify/_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_entry.py -------------------------------------------------------------------------------- /aify/_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_env.py -------------------------------------------------------------------------------- /aify/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_error.py -------------------------------------------------------------------------------- /aify/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_logging.py -------------------------------------------------------------------------------- /aify/_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_program.py -------------------------------------------------------------------------------- /aify/_web_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/_web_template.py -------------------------------------------------------------------------------- /aify/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/embeddings.py -------------------------------------------------------------------------------- /aify/embeddings_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/embeddings_openai.py -------------------------------------------------------------------------------- /aify/embeddings_sentence_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/embeddings_sentence_transformers.py -------------------------------------------------------------------------------- /aify/memories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aify/memories/google_cloud_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/memories/google_cloud_datastore.py -------------------------------------------------------------------------------- /aify/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/aify/memory.py -------------------------------------------------------------------------------- /bin/aify: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | python -m aify $@ -------------------------------------------------------------------------------- /docs/app_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/app_template.md -------------------------------------------------------------------------------- /docs/assets/images/screenshots/aify_webui_new_start_1_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/assets/images/screenshots/aify_webui_new_start_1_screenshot.png -------------------------------------------------------------------------------- /docs/assets/images/screenshots/aify_webui_new_start_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/assets/images/screenshots/aify_webui_new_start_screenshot.png -------------------------------------------------------------------------------- /docs/assets/images/screenshots/aify_webui_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/assets/images/screenshots/aify_webui_screenshot.png -------------------------------------------------------------------------------- /docs/customized/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/customized/main.html -------------------------------------------------------------------------------- /docs/deploy_to_clouds/google_appengine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/deploy_to_clouds/google_appengine.md -------------------------------------------------------------------------------- /docs/dive_into_apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/dive_into_apps.md -------------------------------------------------------------------------------- /docs/enhance_with_python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/enhance_with_python.md -------------------------------------------------------------------------------- /docs/examples/chatbot.md: -------------------------------------------------------------------------------- 1 | # Chatbot 2 | 3 | Coming soon... -------------------------------------------------------------------------------- /docs/examples/llm_generation.md: -------------------------------------------------------------------------------- 1 | # LLM Generation 2 | 3 | Coming soon... -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/rest_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/docs/rest_api.md -------------------------------------------------------------------------------- /examples/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/.env -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/chatbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/chatbot.yml -------------------------------------------------------------------------------- /examples/comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/comments.yml -------------------------------------------------------------------------------- /examples/deploy-to-google-appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/deploy-to-google-appengine/app.yaml -------------------------------------------------------------------------------- /examples/deploy-to-google-appengine/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/deploy-to-google-appengine/index.yaml -------------------------------------------------------------------------------- /examples/emoji.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/emoji.yml -------------------------------------------------------------------------------- /examples/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/helpers.py -------------------------------------------------------------------------------- /examples/indie_hacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/indie_hacker.yml -------------------------------------------------------------------------------- /examples/llama.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/llama.yml -------------------------------------------------------------------------------- /examples/translator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/examples/translator.yml -------------------------------------------------------------------------------- /js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /js/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/build.sh -------------------------------------------------------------------------------- /js/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/config-overrides.js -------------------------------------------------------------------------------- /js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/package-lock.json -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/package.json -------------------------------------------------------------------------------- /js/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/public/index.html -------------------------------------------------------------------------------- /js/src/aify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/src/aify.js -------------------------------------------------------------------------------- /js/src/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/src/chat.js -------------------------------------------------------------------------------- /js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/src/index.css -------------------------------------------------------------------------------- /js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/js/src/index.js -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | build 2 | twine 3 | mkdocs -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/setup.py -------------------------------------------------------------------------------- /webui/.gitignore: -------------------------------------------------------------------------------- 1 | static/aify -------------------------------------------------------------------------------- /webui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webui/templates/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/webui/templates/auth.html -------------------------------------------------------------------------------- /webui/templates/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/webui/templates/basic.html -------------------------------------------------------------------------------- /webui/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellc/aify/HEAD/webui/templates/index.html --------------------------------------------------------------------------------