├── .SourceSageignore ├── .aira ├── config.IRIS.yml ├── config.dev.commit.yml └── config.dev.yml ├── .env.example ├── .github ├── config.py ├── labels.csv ├── release_notes │ ├── .sourcesage_releasenotes_iris.yml │ ├── assets │ │ ├── amaterasu_note1.png │ │ ├── amaterasu_note2.png │ │ ├── amaterasu_note3.png │ │ └── amaterasu_note4.png │ ├── fonts │ │ └── HigherJump-8MZ7M.ttf │ └── sample_assets │ │ ├── release_notes_header_image_02.png │ │ └── release_notes_header_image_03.png ├── repository_summary │ └── .iris.SourceSageignore ├── requirements.txt ├── scripts │ ├── apply_suggestion.py │ ├── deep_comment.py │ ├── generate_github_release_notes.py │ ├── generate_header_image.py │ ├── label_adder.py │ ├── suggest_changes.py │ ├── translate_readme.py │ └── update_readme.py ├── services │ ├── __init__.py │ ├── beta │ │ ├── S3PublicAccessSetup.py │ │ ├── github_cdn_service.py │ │ └── s3_upload_service.py │ ├── color_analyzer.py │ ├── git_service.py │ ├── github_service.py │ ├── image_service.py │ └── llm_service.py ├── setup │ ├── github_add_collaborator.py │ └── update_repo_name.py ├── utils │ ├── __init__.py │ ├── diff_utils.py │ ├── patch_utils.py │ └── vis.py └── workflows │ ├── apply-suggestion.yml │ ├── generate-release-notes.yml │ ├── issue-deep-comment.yml │ ├── issue-review.yml │ ├── translate-readme.yml │ └── update-readme.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .sourcesage_releasenotes.yml ├── HarmonAI-III.png ├── README.en.md ├── amaterasu_main.png ├── flow.dio ├── flow.svg └── release_notes │ └── header_image │ ├── release_header_latest.png │ ├── release_header_v0.2.0.png │ ├── release_header_v0.3.0.png │ ├── release_header_v0.4.0.png │ ├── release_header_v0.5.0.png │ ├── release_header_v0.5.1.png │ ├── release_header_v0.6.0.png │ ├── release_header_v0.6.1.png │ ├── release_header_v1.0.0.png │ ├── release_header_v1.1.0.png │ ├── release_header_v1.10.0.png │ ├── release_header_v1.11.0.png │ ├── release_header_v1.12.0.png │ ├── release_header_v1.13.0.png │ ├── release_header_v1.14.0.png │ ├── release_header_v1.15.0.png │ ├── release_header_v1.15.1.png │ ├── release_header_v1.16.0.png │ ├── release_header_v1.17.0.png │ ├── release_header_v1.17.1.png │ ├── release_header_v1.18.0.png │ ├── release_header_v1.19.0.png │ ├── release_header_v1.2.0.png │ ├── release_header_v1.20.0.png │ ├── release_header_v1.21.0.png │ ├── release_header_v1.22.0.png │ ├── release_header_v1.23.0.png │ ├── release_header_v1.3.0.png │ ├── release_header_v1.4.0.png │ ├── release_header_v1.5.0.png │ ├── release_header_v1.6.0.png │ ├── release_header_v1.6.1.png │ ├── release_header_v1.7.0.png │ ├── release_header_v1.8.0.png │ └── release_header_v1.9.0.png ├── requirements.txt ├── scripts ├── connectivity_health_check.py └── docker-compose_setup_script.sh └── spellbook ├── README.md ├── amaterasu-tool-ui ├── .SourceSageignore ├── README.md ├── amaterasu_tool │ ├── __init__.py │ ├── cli.py │ ├── config │ │ ├── __init__.py │ │ └── terraform.py │ └── utils │ │ ├── __init__.py │ │ └── project.py ├── pyproject.toml └── requirements.txt ├── app-gallery-showcase ├── .env.example ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── assets └── header.svg ├── base-infrastructure ├── .SourceSageignore ├── README.md ├── assets │ ├── base-infrastructure_Pluralith_Diagram.jpg │ └── header.svg ├── default.tf ├── main.tf ├── modules │ ├── route53 │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── security │ │ ├── cloudfront_sg.tf │ │ ├── default.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ ├── vpc_internal_sg.tf │ │ └── whitelist_sg.tf │ └── vpc │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf ├── output.example.json ├── outputs.tf ├── terraform.example.tfvars ├── variables.tf └── whitelist-base-sg.example.csv ├── bolt-diy ├── .env.example ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── coder ├── .env.example ├── README.md ├── docker-compose.yaml ├── templates │ └── docker │ │ └── main.tf └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── dify-beta1 ├── .env.example ├── README.md ├── assets │ └── header.svg ├── certbot │ ├── README.md │ ├── docker-entrypoint.sh │ └── update-cert.template.txt ├── couchbase-server │ ├── Dockerfile │ └── init-cbserver.sh ├── docker-compose-template.yaml ├── docker-compose.middleware.yaml ├── docker-compose.png ├── docker-compose.yaml ├── elasticsearch │ └── docker-entrypoint.sh ├── generate_docker_compose ├── generate_docker_compose.py ├── middleware.env.example ├── nginx │ ├── conf.d │ │ └── default.conf.template │ ├── docker-entrypoint.sh │ ├── https.conf.template │ ├── nginx.conf.template │ ├── proxy.conf.template │ └── ssl │ │ └── .gitkeep ├── ssrf_proxy │ ├── docker-entrypoint.sh │ └── squid.conf.template ├── startupscripts │ ├── init.sh │ └── init_user.script ├── terraform │ ├── cloudfront-infrastructure │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars.example │ │ └── variables.tf │ └── main-infrastructure │ │ ├── common_variables.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── scripts │ │ └── setup_script.sh └── volumes │ ├── myscale │ └── config │ │ └── users.d │ │ └── custom_users_config.xml │ ├── oceanbase │ └── init.d │ │ └── vec_memory.sql │ └── opensearch │ └── opensearch_dashboards.yml ├── dify ├── .env.example ├── README.md ├── assets │ └── header.svg ├── certbot │ ├── README.md │ ├── docker-entrypoint.sh │ └── update-cert.template.txt ├── couchbase-server │ ├── Dockerfile │ └── init-cbserver.sh ├── docker-compose-template.yaml ├── docker-compose.middleware.yaml ├── docker-compose.png ├── docker-compose.yaml ├── elasticsearch │ └── docker-entrypoint.sh ├── generate_docker_compose ├── middleware.env.example ├── nginx │ ├── conf.d │ │ └── default.conf.template │ ├── docker-entrypoint.sh │ ├── https.conf.template │ ├── nginx.conf.template │ ├── proxy.conf.template │ └── ssl │ │ └── .gitkeep ├── ssrf_proxy │ ├── docker-entrypoint.sh │ └── squid.conf.template ├── startupscripts │ ├── init.sh │ └── init_user.script ├── terraform │ ├── cloudfront-infrastructure │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars.example │ │ └── variables.tf │ └── main-infrastructure │ │ ├── common_variables.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── scripts │ │ └── setup_script.sh └── volumes │ ├── myscale │ └── config │ │ └── users.d │ │ └── custom_users_config.xml │ ├── oceanbase │ └── init.d │ │ └── vec_memory.sql │ ├── opensearch │ └── opensearch_dashboards.yml │ └── sandbox │ ├── conf │ ├── config.yaml │ └── config.yaml.example │ └── dependencies │ └── python-requirements.txt ├── ee-llm-tester-gr ├── .SourceSageignore ├── Dockerfile ├── README.md ├── app.py ├── app │ ├── __init__.py │ ├── models.py │ ├── ui.py │ └── utils.py ├── assets │ └── header.svg ├── docker-compose.yml ├── requirements.txt ├── script │ ├── cleanup-registry.sh │ ├── deploy.sh │ └── import_resources.sh └── terraform │ ├── .SourceSageignore │ ├── main.tf │ ├── modules │ ├── alb.tf │ ├── cloudfront.tf │ ├── ec2.tf │ ├── ecs.tf │ ├── iam.tf │ ├── outputs.tf │ ├── scheduling.tf │ ├── security.tf │ ├── variables.tf │ ├── versions.tf │ └── waf.tf │ ├── outputs.tf │ ├── terraform.example.tfvars │ └── variables.tf ├── ee-llm-tester-st ├── .SourceSageignore ├── Dockerfile ├── README.md ├── app.py ├── assets │ └── header.svg ├── docker-compose.yml ├── requirements.txt ├── script │ ├── cleanup-registry.sh │ ├── deploy.sh │ └── import_resources.sh └── terraform │ ├── .SourceSageignore │ ├── main.tf │ ├── outputs.tf │ ├── terraform.example.tfvars │ └── variables.tf ├── ee-marp-editable-ui ├── .SourceSageignore ├── .env.example ├── README.md ├── app.py ├── assets │ └── header.svg ├── docker-compose.yml ├── requirements.txt ├── script │ ├── cleanup-registry.sh │ ├── deploy.sh │ └── import_resources.sh └── terraform │ ├── .SourceSageignore │ ├── main.tf │ ├── outputs.tf │ ├── terraform.example.tfvars │ └── variables.tf ├── fg-llm-tester ├── .SourceSageignore ├── Dockerfile ├── README.md ├── app.py ├── docker-compose.yml ├── requirements.txt ├── script │ ├── update-fargate-image.ps1 │ └── update-fargate-image.sh └── terraform │ ├── main.tf │ ├── modules │ ├── cloudfront.tf │ ├── ecs.tf │ ├── iam.tf │ ├── outputs.tf │ ├── scheduling.tf │ ├── security.tf │ ├── variables.tf │ └── waf.tf │ ├── outputs.tf │ └── variables.tf ├── fg-prompt-pandora ├── .SourceSageignore ├── Dockerfile ├── README.md ├── app.py ├── docker-compose.yml ├── requirements.txt ├── script │ ├── update-fargate-image.ps1 │ └── update-fargate-image.sh ├── terraform │ ├── main.tf │ ├── modules │ │ ├── alb.tf │ │ ├── cloudfront.tf │ │ ├── ecs.tf │ │ ├── iam.tf │ │ ├── scheduling.tf │ │ ├── security.tf │ │ ├── variables.tf │ │ └── waf.tf │ ├── outputs.tf │ └── variables.tf └── utils │ ├── __init__.py │ ├── header_template.py │ ├── llm_utils.py │ └── prompt_template.py ├── gitlab ├── .env.example ├── README.md ├── agents │ ├── .env.example │ ├── README.md │ ├── auto_labeling.py │ ├── llm_reviewer │ │ ├── README.md │ │ ├── main.py │ │ ├── module │ │ │ ├── gitlab_commenter.py │ │ │ ├── gitlab_fetcher.py │ │ │ └── llm_analyzer.py │ │ ├── prompts │ │ │ └── review_prompt.txt │ │ └── src │ │ │ └── __init__.py │ ├── post_comment.py │ └── requirements.txt ├── assets │ ├── agents_header.svg │ ├── header.svg │ └── services_header.svg ├── docker-compose.yml ├── docs │ ├── backup-restore.md │ ├── runner-setup.md │ └── ssh-setup.md ├── script │ └── setup │ │ ├── act.bat │ │ ├── gitlab_labels_creator.py │ │ └── setup_gitlab.py ├── services │ ├── README.md │ ├── gitlab │ │ ├── README.md │ │ ├── backups │ │ │ └── .gitkeep │ │ ├── config │ │ │ └── .gitkeep │ │ ├── data │ │ │ └── .gitkeep │ │ └── logs │ │ │ └── .gitkeep │ └── runner │ │ ├── README.md │ │ └── config │ │ └── .gitkeep └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── acm.tf │ ├── assets │ │ └── header.svg │ ├── cloudfront.tf │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ ├── route53.tf │ ├── terraform.example.tfvars │ ├── variables.tf │ └── waf.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── kotaemon ├── .env.example ├── README.md ├── docker-compose.yaml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── langfuse ├── .env.example ├── add_claude_model_definition.py ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── langfuse3 ├── .env.example ├── add_claude_model_definition.py ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── librechat ├── .SourceSageignore ├── .env.example ├── README.md ├── assets │ ├── header.svg │ └── script-header.svg ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── .SourceSageignore │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ ├── scripts │ └── setup_script.sh │ └── versions.tf ├── litellm-beta ├── .SourceSageignore ├── .env.example ├── README.md ├── assets │ ├── header.svg │ └── script-header.svg ├── config.dev.yaml ├── config.yaml ├── docker-compose.yml ├── docs │ ├── docker-volume-purge.md │ └── self-signed-cert-guide.md ├── prometheus.yml ├── script │ ├── README.md │ ├── check_json_support.py │ ├── check_model_params.py │ ├── requirements.txt │ ├── test_bedrock.py │ ├── test_embeddings.py │ ├── test_simple_chat.py │ ├── test_simple_embedding.py │ └── test_vertex_ai.py ├── terraform │ ├── .SourceSageignore │ ├── README.md │ ├── assets │ │ └── header.svg │ └── main-infrastructure │ │ ├── .SourceSageignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ └── header.svg │ │ ├── common_variables.tf │ │ ├── main.tf │ │ ├── modules │ │ ├── common │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── compute │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── iam │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── networking │ │ │ ├── core │ │ │ ├── acm.tf │ │ │ ├── alb.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── route53.tf │ │ │ ├── security_group_rules.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ │ ├── data-sources │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── outputs.tf │ │ ├── scripts │ │ ├── get_ca_cert.ps1 │ │ ├── get_ca_cert.sh │ │ └── setup_script.sh │ │ ├── terraform.example.tfvars │ │ └── versions.tf └── vertex-ai-key.example.json ├── litellm ├── .env.example ├── config │ ├── config.dev.yaml │ └── config.yaml └── docker-compose.yml ├── marp-editable-ui ├── .env.example ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── open-webui-pipeline ├── conversation_turn_limit_filter.py ├── docker-compose.yml └── langfuse_litellm_filter_pipeline.py ├── open-webui ├── .SourceSageignore ├── .env.example ├── README.md ├── assets │ └── header.svg ├── backup │ └── .gitkeep ├── docker-compose.yaml ├── docs │ └── docker-volume-backup-restore.md ├── script │ ├── __init__.py │ ├── chat_completions.py │ ├── config.py │ ├── files.py │ ├── models.py │ └── utils.py └── terraform │ ├── .SourceSageignore │ ├── README.md │ ├── assets │ └── header.svg │ ├── cloudfront-infrastructure │ ├── .SourceSageignore │ ├── README.md │ ├── assets │ │ └── header.svg │ ├── main.tf │ ├── modules │ │ ├── README.md │ │ ├── acm.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── route53.tf │ │ ├── variables.tf │ │ └── waf.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── .SourceSageignore │ ├── .gitignore │ ├── README.md │ ├── assets │ └── header.svg │ ├── common_variables.tf │ ├── main.tf │ ├── modules │ ├── common │ │ ├── outputs.tf │ │ └── variables.tf │ ├── compute │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── iam │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ └── networking │ │ ├── core │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── route53.tf │ │ ├── security_group_rules.tf │ │ └── variables.tf │ │ ├── data-sources │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── outputs.tf │ ├── scripts │ ├── get_ca_cert.ps1 │ ├── get_ca_cert.sh │ └── setup_script.sh │ ├── terraform.example.tfvars │ └── versions.tf ├── pdf2audio-jp-voicevox ├── .SourceSageignore ├── .env.example ├── docker-compose.yml └── terraform │ ├── cloudfront-infrastructure │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── terraform.tfvars.example │ └── variables.tf │ └── main-infrastructure │ ├── common_variables.tf │ ├── main.tf │ ├── outputs.tf │ └── scripts │ └── setup_script.sh ├── supabase ├── .SourceSageignore ├── .env.example ├── README.md ├── assets │ └── header.svg ├── dev │ ├── data.sql │ └── docker-compose.dev.yml ├── docker-compose.yml ├── example │ ├── README.md │ └── sql │ │ ├── posts_comments.sql │ │ ├── tags.sql │ │ └── test_data.sql ├── reset.sh ├── terraform │ ├── cloudfront-infrastructure │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── terraform.tfvars.example │ │ └── variables.tf │ └── main-infrastructure │ │ ├── common_variables.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── scripts │ │ └── setup_script.sh └── volumes │ ├── api │ └── kong.yml │ ├── db │ ├── _supabase.sql │ ├── init │ │ ├── data.sql │ │ └── test_data.sql │ ├── jwt.sql │ ├── logs.sql │ ├── pooler.sql │ ├── realtime.sql │ ├── roles.sql │ └── webhooks.sql │ ├── functions │ ├── hello │ │ └── index.ts │ └── main │ │ └── index.ts │ ├── logs │ └── vector.yml │ └── pooler │ └── pooler.exs └── whitelist-waf.exmaple.csv /.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.SourceSageignore -------------------------------------------------------------------------------- /.aira/config.IRIS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.aira/config.IRIS.yml -------------------------------------------------------------------------------- /.aira/config.dev.commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.aira/config.dev.commit.yml -------------------------------------------------------------------------------- /.aira/config.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.aira/config.dev.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.env.example -------------------------------------------------------------------------------- /.github/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/config.py -------------------------------------------------------------------------------- /.github/labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/labels.csv -------------------------------------------------------------------------------- /.github/release_notes/.sourcesage_releasenotes_iris.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/.sourcesage_releasenotes_iris.yml -------------------------------------------------------------------------------- /.github/release_notes/assets/amaterasu_note1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/assets/amaterasu_note1.png -------------------------------------------------------------------------------- /.github/release_notes/assets/amaterasu_note2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/assets/amaterasu_note2.png -------------------------------------------------------------------------------- /.github/release_notes/assets/amaterasu_note3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/assets/amaterasu_note3.png -------------------------------------------------------------------------------- /.github/release_notes/assets/amaterasu_note4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/assets/amaterasu_note4.png -------------------------------------------------------------------------------- /.github/release_notes/fonts/HigherJump-8MZ7M.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/fonts/HigherJump-8MZ7M.ttf -------------------------------------------------------------------------------- /.github/release_notes/sample_assets/release_notes_header_image_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/sample_assets/release_notes_header_image_02.png -------------------------------------------------------------------------------- /.github/release_notes/sample_assets/release_notes_header_image_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/release_notes/sample_assets/release_notes_header_image_03.png -------------------------------------------------------------------------------- /.github/repository_summary/.iris.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/repository_summary/.iris.SourceSageignore -------------------------------------------------------------------------------- /.github/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/requirements.txt -------------------------------------------------------------------------------- /.github/scripts/apply_suggestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/apply_suggestion.py -------------------------------------------------------------------------------- /.github/scripts/deep_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/deep_comment.py -------------------------------------------------------------------------------- /.github/scripts/generate_github_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/generate_github_release_notes.py -------------------------------------------------------------------------------- /.github/scripts/generate_header_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/generate_header_image.py -------------------------------------------------------------------------------- /.github/scripts/label_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/label_adder.py -------------------------------------------------------------------------------- /.github/scripts/suggest_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/suggest_changes.py -------------------------------------------------------------------------------- /.github/scripts/translate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/translate_readme.py -------------------------------------------------------------------------------- /.github/scripts/update_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/scripts/update_readme.py -------------------------------------------------------------------------------- /.github/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/__init__.py -------------------------------------------------------------------------------- /.github/services/beta/S3PublicAccessSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/beta/S3PublicAccessSetup.py -------------------------------------------------------------------------------- /.github/services/beta/github_cdn_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/beta/github_cdn_service.py -------------------------------------------------------------------------------- /.github/services/beta/s3_upload_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/beta/s3_upload_service.py -------------------------------------------------------------------------------- /.github/services/color_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/color_analyzer.py -------------------------------------------------------------------------------- /.github/services/git_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/git_service.py -------------------------------------------------------------------------------- /.github/services/github_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/github_service.py -------------------------------------------------------------------------------- /.github/services/image_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/image_service.py -------------------------------------------------------------------------------- /.github/services/llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/services/llm_service.py -------------------------------------------------------------------------------- /.github/setup/github_add_collaborator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/setup/github_add_collaborator.py -------------------------------------------------------------------------------- /.github/setup/update_repo_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/setup/update_repo_name.py -------------------------------------------------------------------------------- /.github/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/utils/__init__.py -------------------------------------------------------------------------------- /.github/utils/diff_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/utils/diff_utils.py -------------------------------------------------------------------------------- /.github/utils/patch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/utils/patch_utils.py -------------------------------------------------------------------------------- /.github/utils/vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/utils/vis.py -------------------------------------------------------------------------------- /.github/workflows/apply-suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/workflows/apply-suggestion.yml -------------------------------------------------------------------------------- /.github/workflows/generate-release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/workflows/generate-release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/issue-deep-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/workflows/issue-deep-comment.yml -------------------------------------------------------------------------------- /.github/workflows/issue-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/workflows/issue-review.yml -------------------------------------------------------------------------------- /.github/workflows/translate-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/workflows/translate-readme.yml -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/README.md -------------------------------------------------------------------------------- /docs/.sourcesage_releasenotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/.sourcesage_releasenotes.yml -------------------------------------------------------------------------------- /docs/HarmonAI-III.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/HarmonAI-III.png -------------------------------------------------------------------------------- /docs/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/README.en.md -------------------------------------------------------------------------------- /docs/amaterasu_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/amaterasu_main.png -------------------------------------------------------------------------------- /docs/flow.dio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/flow.dio -------------------------------------------------------------------------------- /docs/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/flow.svg -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_latest.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.2.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.3.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.4.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.5.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.5.1.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.6.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.6.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v0.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v0.6.1.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.0.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.1.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.10.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.10.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.11.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.11.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.12.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.12.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.13.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.13.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.14.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.14.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.15.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.15.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.15.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.15.1.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.16.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.16.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.17.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.17.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.17.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.17.1.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.18.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.18.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.19.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.19.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.2.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.20.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.20.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.21.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.21.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.22.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.22.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.23.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.23.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.3.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.3.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.4.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.5.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.6.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.6.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.6.1.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.7.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.8.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.8.0.png -------------------------------------------------------------------------------- /docs/release_notes/header_image/release_header_v1.9.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/docs/release_notes/header_image/release_header_v1.9.0.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aira 2 | sourcesage 3 | -------------------------------------------------------------------------------- /scripts/connectivity_health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/scripts/connectivity_health_check.py -------------------------------------------------------------------------------- /scripts/docker-compose_setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/scripts/docker-compose_setup_script.sh -------------------------------------------------------------------------------- /spellbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/README.md -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/README.md -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/amaterasu_tool/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Amaterasu Tool - AWSインフラストラクチャ設定管理ツール 3 | """ 4 | 5 | __version__ = "0.1.0" 6 | -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/amaterasu_tool/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/amaterasu_tool/cli.py -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/amaterasu_tool/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/amaterasu_tool/config/__init__.py -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/amaterasu_tool/config/terraform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/amaterasu_tool/config/terraform.py -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/amaterasu_tool/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/amaterasu_tool/utils/__init__.py -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/amaterasu_tool/utils/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/amaterasu_tool/utils/project.py -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/amaterasu-tool-ui/pyproject.toml -------------------------------------------------------------------------------- /spellbook/amaterasu-tool-ui/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==1.29.0 2 | -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/.env.example -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/app-gallery-showcase/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/app-gallery-showcase/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/assets/header.svg -------------------------------------------------------------------------------- /spellbook/base-infrastructure/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/base-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/base-infrastructure/assets/base-infrastructure_Pluralith_Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/assets/base-infrastructure_Pluralith_Diagram.jpg -------------------------------------------------------------------------------- /spellbook/base-infrastructure/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/assets/header.svg -------------------------------------------------------------------------------- /spellbook/base-infrastructure/default.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/default.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/route53/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/route53/main.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/route53/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/route53/outputs.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/route53/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/route53/variables.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/cloudfront_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/security/cloudfront_sg.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/default.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/security/default.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/main.tf: -------------------------------------------------------------------------------- 1 | # セキュリティグループの設定はdefault.tfに統合 2 | -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/security/outputs.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/security/variables.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/vpc_internal_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/security/vpc_internal_sg.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/security/whitelist_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/security/whitelist_sg.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/vpc/main.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/vpc/outputs.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/modules/vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/modules/vpc/variables.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/output.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/output.example.json -------------------------------------------------------------------------------- /spellbook/base-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/base-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/base-infrastructure/whitelist-base-sg.example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/base-infrastructure/whitelist-base-sg.example.csv -------------------------------------------------------------------------------- /spellbook/bolt-diy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/.env.example -------------------------------------------------------------------------------- /spellbook/bolt-diy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/bolt-diy/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/bolt-diy/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/coder/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/.env.example -------------------------------------------------------------------------------- /spellbook/coder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/README.md -------------------------------------------------------------------------------- /spellbook/coder/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/docker-compose.yaml -------------------------------------------------------------------------------- /spellbook/coder/templates/docker/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/templates/docker/main.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/coder/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/coder/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/coder/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/coder/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/.env.example -------------------------------------------------------------------------------- /spellbook/dify-beta1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/README.md -------------------------------------------------------------------------------- /spellbook/dify-beta1/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/assets/header.svg -------------------------------------------------------------------------------- /spellbook/dify-beta1/certbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/certbot/README.md -------------------------------------------------------------------------------- /spellbook/dify-beta1/certbot/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/certbot/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/certbot/update-cert.template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/certbot/update-cert.template.txt -------------------------------------------------------------------------------- /spellbook/dify-beta1/couchbase-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/couchbase-server/Dockerfile -------------------------------------------------------------------------------- /spellbook/dify-beta1/couchbase-server/init-cbserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/couchbase-server/init-cbserver.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/docker-compose-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/docker-compose-template.yaml -------------------------------------------------------------------------------- /spellbook/dify-beta1/docker-compose.middleware.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/docker-compose.middleware.yaml -------------------------------------------------------------------------------- /spellbook/dify-beta1/docker-compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/docker-compose.png -------------------------------------------------------------------------------- /spellbook/dify-beta1/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/docker-compose.yaml -------------------------------------------------------------------------------- /spellbook/dify-beta1/elasticsearch/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/elasticsearch/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/generate_docker_compose: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/dify-beta1/generate_docker_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/generate_docker_compose.py -------------------------------------------------------------------------------- /spellbook/dify-beta1/middleware.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/middleware.env.example -------------------------------------------------------------------------------- /spellbook/dify-beta1/nginx/conf.d/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/nginx/conf.d/default.conf.template -------------------------------------------------------------------------------- /spellbook/dify-beta1/nginx/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/nginx/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/nginx/https.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/nginx/https.conf.template -------------------------------------------------------------------------------- /spellbook/dify-beta1/nginx/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/nginx/nginx.conf.template -------------------------------------------------------------------------------- /spellbook/dify-beta1/nginx/proxy.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/nginx/proxy.conf.template -------------------------------------------------------------------------------- /spellbook/dify-beta1/nginx/ssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/dify-beta1/ssrf_proxy/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/ssrf_proxy/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/ssrf_proxy/squid.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/ssrf_proxy/squid.conf.template -------------------------------------------------------------------------------- /spellbook/dify-beta1/startupscripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/startupscripts/init.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/startupscripts/init_user.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/startupscripts/init_user.script -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/dify-beta1/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/dify-beta1/volumes/myscale/config/users.d/custom_users_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/volumes/myscale/config/users.d/custom_users_config.xml -------------------------------------------------------------------------------- /spellbook/dify-beta1/volumes/oceanbase/init.d/vec_memory.sql: -------------------------------------------------------------------------------- 1 | ALTER SYSTEM SET ob_vector_memory_limit_percentage = 30; -------------------------------------------------------------------------------- /spellbook/dify-beta1/volumes/opensearch/opensearch_dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify-beta1/volumes/opensearch/opensearch_dashboards.yml -------------------------------------------------------------------------------- /spellbook/dify/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/.env.example -------------------------------------------------------------------------------- /spellbook/dify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/README.md -------------------------------------------------------------------------------- /spellbook/dify/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/assets/header.svg -------------------------------------------------------------------------------- /spellbook/dify/certbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/certbot/README.md -------------------------------------------------------------------------------- /spellbook/dify/certbot/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/certbot/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify/certbot/update-cert.template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/certbot/update-cert.template.txt -------------------------------------------------------------------------------- /spellbook/dify/couchbase-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/couchbase-server/Dockerfile -------------------------------------------------------------------------------- /spellbook/dify/couchbase-server/init-cbserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/couchbase-server/init-cbserver.sh -------------------------------------------------------------------------------- /spellbook/dify/docker-compose-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/docker-compose-template.yaml -------------------------------------------------------------------------------- /spellbook/dify/docker-compose.middleware.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/docker-compose.middleware.yaml -------------------------------------------------------------------------------- /spellbook/dify/docker-compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/docker-compose.png -------------------------------------------------------------------------------- /spellbook/dify/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/docker-compose.yaml -------------------------------------------------------------------------------- /spellbook/dify/elasticsearch/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/elasticsearch/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify/generate_docker_compose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/generate_docker_compose -------------------------------------------------------------------------------- /spellbook/dify/middleware.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/middleware.env.example -------------------------------------------------------------------------------- /spellbook/dify/nginx/conf.d/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/nginx/conf.d/default.conf.template -------------------------------------------------------------------------------- /spellbook/dify/nginx/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/nginx/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify/nginx/https.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/nginx/https.conf.template -------------------------------------------------------------------------------- /spellbook/dify/nginx/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/nginx/nginx.conf.template -------------------------------------------------------------------------------- /spellbook/dify/nginx/proxy.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/nginx/proxy.conf.template -------------------------------------------------------------------------------- /spellbook/dify/nginx/ssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/dify/ssrf_proxy/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/ssrf_proxy/docker-entrypoint.sh -------------------------------------------------------------------------------- /spellbook/dify/ssrf_proxy/squid.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/ssrf_proxy/squid.conf.template -------------------------------------------------------------------------------- /spellbook/dify/startupscripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/startupscripts/init.sh -------------------------------------------------------------------------------- /spellbook/dify/startupscripts/init_user.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/startupscripts/init_user.script -------------------------------------------------------------------------------- /spellbook/dify/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/dify/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/dify/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/dify/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/dify/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/dify/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/dify/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/dify/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/dify/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/dify/volumes/myscale/config/users.d/custom_users_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/volumes/myscale/config/users.d/custom_users_config.xml -------------------------------------------------------------------------------- /spellbook/dify/volumes/oceanbase/init.d/vec_memory.sql: -------------------------------------------------------------------------------- 1 | ALTER SYSTEM SET ob_vector_memory_limit_percentage = 30; -------------------------------------------------------------------------------- /spellbook/dify/volumes/opensearch/opensearch_dashboards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/volumes/opensearch/opensearch_dashboards.yml -------------------------------------------------------------------------------- /spellbook/dify/volumes/sandbox/conf/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/volumes/sandbox/conf/config.yaml -------------------------------------------------------------------------------- /spellbook/dify/volumes/sandbox/conf/config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/dify/volumes/sandbox/conf/config.yaml.example -------------------------------------------------------------------------------- /spellbook/dify/volumes/sandbox/dependencies/python-requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/Dockerfile -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/README.md -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/app.py -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/app/__init__.py -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/app/models.py -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/app/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/app/ui.py -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/app/utils.py -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/assets/header.svg -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/requirements.txt -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/script/cleanup-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/script/cleanup-registry.sh -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/script/deploy.sh -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/script/import_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/script/import_resources.sh -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/main.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/alb.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/cloudfront.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/ec2.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/ecs.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/iam.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/outputs.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/scheduling.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/scheduling.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/security.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/variables.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/versions.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/modules/waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/modules/waf.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/outputs.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-gr/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-gr/terraform/variables.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/Dockerfile -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/README.md -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/app.py -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/assets/header.svg -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/requirements.txt -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/script/cleanup-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/script/cleanup-registry.sh -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/script/deploy.sh -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/script/import_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/script/import_resources.sh -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/terraform/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/terraform/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/terraform/main.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/terraform/outputs.tf -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/terraform/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/terraform/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/ee-llm-tester-st/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-llm-tester-st/terraform/variables.tf -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/.env.example -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/README.md -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/app.py -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/assets/header.svg -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/requirements.txt -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/script/cleanup-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/script/cleanup-registry.sh -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/script/deploy.sh -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/script/import_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/script/import_resources.sh -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/terraform/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/terraform/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/terraform/main.tf -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/terraform/outputs.tf -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/terraform/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/terraform/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/ee-marp-editable-ui/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/ee-marp-editable-ui/terraform/variables.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/Dockerfile -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/README.md -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/app.py -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/requirements.txt -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/script/update-fargate-image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/script/update-fargate-image.ps1 -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/script/update-fargate-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/script/update-fargate-image.sh -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/main.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/cloudfront.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/ecs.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/iam.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/outputs.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/scheduling.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/scheduling.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/security.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/variables.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/modules/waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/modules/waf.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/outputs.tf -------------------------------------------------------------------------------- /spellbook/fg-llm-tester/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-llm-tester/terraform/variables.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/Dockerfile -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/README.md -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/app.py -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/requirements.txt: -------------------------------------------------------------------------------- 1 | aira 2 | sourcesage 3 | streamlit 4 | litellm 5 | boto3>=1.28.57 6 | -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/script/update-fargate-image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/script/update-fargate-image.ps1 -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/script/update-fargate-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/script/update-fargate-image.sh -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/main.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/alb.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/cloudfront.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/ecs.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/iam.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/scheduling.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/scheduling.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/security.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/variables.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/modules/waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/modules/waf.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/outputs.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/terraform/variables.tf -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/utils/__init__.py -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/utils/header_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/utils/header_template.py -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/utils/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/utils/llm_utils.py -------------------------------------------------------------------------------- /spellbook/fg-prompt-pandora/utils/prompt_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/fg-prompt-pandora/utils/prompt_template.py -------------------------------------------------------------------------------- /spellbook/gitlab/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/.env.example -------------------------------------------------------------------------------- /spellbook/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/agents/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/.env.example -------------------------------------------------------------------------------- /spellbook/gitlab/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/agents/auto_labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/auto_labeling.py -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/llm_reviewer/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/llm_reviewer/main.py -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/module/gitlab_commenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/llm_reviewer/module/gitlab_commenter.py -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/module/gitlab_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/llm_reviewer/module/gitlab_fetcher.py -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/module/llm_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/llm_reviewer/module/llm_analyzer.py -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/prompts/review_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/llm_reviewer/prompts/review_prompt.txt -------------------------------------------------------------------------------- /spellbook/gitlab/agents/llm_reviewer/src/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | GitLab MR Reviewer Modules 3 | """ 4 | 5 | __version__ = '1.0.0' -------------------------------------------------------------------------------- /spellbook/gitlab/agents/post_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/post_comment.py -------------------------------------------------------------------------------- /spellbook/gitlab/agents/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/agents/requirements.txt -------------------------------------------------------------------------------- /spellbook/gitlab/assets/agents_header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/assets/agents_header.svg -------------------------------------------------------------------------------- /spellbook/gitlab/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/assets/header.svg -------------------------------------------------------------------------------- /spellbook/gitlab/assets/services_header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/assets/services_header.svg -------------------------------------------------------------------------------- /spellbook/gitlab/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/gitlab/docs/backup-restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/docs/backup-restore.md -------------------------------------------------------------------------------- /spellbook/gitlab/docs/runner-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/docs/runner-setup.md -------------------------------------------------------------------------------- /spellbook/gitlab/docs/ssh-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/docs/ssh-setup.md -------------------------------------------------------------------------------- /spellbook/gitlab/script/setup/act.bat: -------------------------------------------------------------------------------- 1 | .venv\Scripts\activate 2 | -------------------------------------------------------------------------------- /spellbook/gitlab/script/setup/gitlab_labels_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/script/setup/gitlab_labels_creator.py -------------------------------------------------------------------------------- /spellbook/gitlab/script/setup/setup_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/script/setup/setup_gitlab.py -------------------------------------------------------------------------------- /spellbook/gitlab/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/services/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/services/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/services/gitlab/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/services/gitlab/backups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/gitlab/services/gitlab/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/gitlab/services/gitlab/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/gitlab/services/gitlab/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/gitlab/services/runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/services/runner/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/services/runner/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/acm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/acm.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/assets/header.svg -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/cloudfront.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/provider.tf: -------------------------------------------------------------------------------- 1 | # Providerの設定はmain.tfに統合しました -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/route53.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/cloudfront-infrastructure/waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/cloudfront-infrastructure/waf.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/gitlab/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/gitlab/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/kotaemon/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/.env.example -------------------------------------------------------------------------------- /spellbook/kotaemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/README.md -------------------------------------------------------------------------------- /spellbook/kotaemon/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/docker-compose.yaml -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/kotaemon/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/kotaemon/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/langfuse/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/.env.example -------------------------------------------------------------------------------- /spellbook/langfuse/add_claude_model_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/add_claude_model_definition.py -------------------------------------------------------------------------------- /spellbook/langfuse/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/langfuse/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/langfuse3/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/.env.example -------------------------------------------------------------------------------- /spellbook/langfuse3/add_claude_model_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/add_claude_model_definition.py -------------------------------------------------------------------------------- /spellbook/langfuse3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/langfuse3/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/langfuse3/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/librechat/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/librechat/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/.env.example -------------------------------------------------------------------------------- /spellbook/librechat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/README.md -------------------------------------------------------------------------------- /spellbook/librechat/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/assets/header.svg -------------------------------------------------------------------------------- /spellbook/librechat/assets/script-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/assets/script-header.svg -------------------------------------------------------------------------------- /spellbook/librechat/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/librechat/terraform/cloudfront-infrastructure/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/cloudfront-infrastructure/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/librechat/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/librechat/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/librechat/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/librechat/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/librechat/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/librechat/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/librechat/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/librechat/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/librechat/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/librechat/terraform/main-infrastructure/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/librechat/terraform/main-infrastructure/versions.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/litellm-beta/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/.env.example -------------------------------------------------------------------------------- /spellbook/litellm-beta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/README.md -------------------------------------------------------------------------------- /spellbook/litellm-beta/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/assets/header.svg -------------------------------------------------------------------------------- /spellbook/litellm-beta/assets/script-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/assets/script-header.svg -------------------------------------------------------------------------------- /spellbook/litellm-beta/config.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/config.dev.yaml -------------------------------------------------------------------------------- /spellbook/litellm-beta/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/config.yaml -------------------------------------------------------------------------------- /spellbook/litellm-beta/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/litellm-beta/docs/docker-volume-purge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/docs/docker-volume-purge.md -------------------------------------------------------------------------------- /spellbook/litellm-beta/docs/self-signed-cert-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/docs/self-signed-cert-guide.md -------------------------------------------------------------------------------- /spellbook/litellm-beta/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/prometheus.yml -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/README.md -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/check_json_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/check_json_support.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/check_model_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/check_model_params.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/requirements.txt: -------------------------------------------------------------------------------- 1 | litellm 2 | loguru 3 | python-dotenv 4 | -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/test_bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/test_bedrock.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/test_embeddings.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/test_simple_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/test_simple_chat.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/test_simple_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/test_simple_embedding.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/script/test_vertex_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/script/test_vertex_ai.py -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/README.md -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/assets/header.svg -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .codegpt -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/assets/header.svg -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/common/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/common/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/common/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/common/variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/compute/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/compute/main.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/compute/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/compute/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/compute/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/compute/variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/iam/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/iam/main.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/iam/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/iam/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/iam/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/iam/variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/acm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/acm.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/alb.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/main.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/route53.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/security_group_rules.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/security_group_rules.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/core/versions.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/data-sources/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/data-sources/main.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/data-sources/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/data-sources/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/data-sources/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/data-sources/variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/main.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/variables.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/modules/networking/versions.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/scripts/get_ca_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/scripts/get_ca_cert.ps1 -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/scripts/get_ca_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/scripts/get_ca_cert.sh -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/litellm-beta/terraform/main-infrastructure/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/terraform/main-infrastructure/versions.tf -------------------------------------------------------------------------------- /spellbook/litellm-beta/vertex-ai-key.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm-beta/vertex-ai-key.example.json -------------------------------------------------------------------------------- /spellbook/litellm/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm/.env.example -------------------------------------------------------------------------------- /spellbook/litellm/config/config.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm/config/config.dev.yaml -------------------------------------------------------------------------------- /spellbook/litellm/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm/config/config.yaml -------------------------------------------------------------------------------- /spellbook/litellm/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/litellm/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/.env.example -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/marp-editable-ui/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/marp-editable-ui/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/open-webui-pipeline/conversation_turn_limit_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui-pipeline/conversation_turn_limit_filter.py -------------------------------------------------------------------------------- /spellbook/open-webui-pipeline/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui-pipeline/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/open-webui-pipeline/langfuse_litellm_filter_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui-pipeline/langfuse_litellm_filter_pipeline.py -------------------------------------------------------------------------------- /spellbook/open-webui/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/open-webui/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/.env.example -------------------------------------------------------------------------------- /spellbook/open-webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/README.md -------------------------------------------------------------------------------- /spellbook/open-webui/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/assets/header.svg -------------------------------------------------------------------------------- /spellbook/open-webui/backup/.gitkeep: -------------------------------------------------------------------------------- 1 | gitkeep 2 | -------------------------------------------------------------------------------- /spellbook/open-webui/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/docker-compose.yaml -------------------------------------------------------------------------------- /spellbook/open-webui/docs/docker-volume-backup-restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/docs/docker-volume-backup-restore.md -------------------------------------------------------------------------------- /spellbook/open-webui/script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/script/__init__.py -------------------------------------------------------------------------------- /spellbook/open-webui/script/chat_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/script/chat_completions.py -------------------------------------------------------------------------------- /spellbook/open-webui/script/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/script/config.py -------------------------------------------------------------------------------- /spellbook/open-webui/script/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/script/files.py -------------------------------------------------------------------------------- /spellbook/open-webui/script/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/script/models.py -------------------------------------------------------------------------------- /spellbook/open-webui/script/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/script/utils.py -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/README.md -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/assets/header.svg -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/assets/header.svg -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/README.md -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/acm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/acm.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/route53.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/modules/waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/modules/waf.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .codegpt -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/assets/header.svg -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/common/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/common/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/common/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/common/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/compute/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/compute/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/compute/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/compute/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/compute/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/compute/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/iam/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/iam/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/iam/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/iam/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/iam/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/iam/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/route53.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/security_group_rules.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/security_group_rules.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/core/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/data-sources/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/data-sources/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/data-sources/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/data-sources/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/data-sources/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/data-sources/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/main.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/variables.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/modules/networking/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/modules/networking/versions.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/scripts/get_ca_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/scripts/get_ca_cert.ps1 -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/scripts/get_ca_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/scripts/get_ca_cert.sh -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/terraform.example.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/terraform.example.tfvars -------------------------------------------------------------------------------- /spellbook/open-webui/terraform/main-infrastructure/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/open-webui/terraform/main-infrastructure/versions.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/.env.example -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/pdf2audio-jp-voicevox/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/supabase/.SourceSageignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/.SourceSageignore -------------------------------------------------------------------------------- /spellbook/supabase/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/.env.example -------------------------------------------------------------------------------- /spellbook/supabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/README.md -------------------------------------------------------------------------------- /spellbook/supabase/assets/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/assets/header.svg -------------------------------------------------------------------------------- /spellbook/supabase/dev/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/dev/data.sql -------------------------------------------------------------------------------- /spellbook/supabase/dev/docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/dev/docker-compose.dev.yml -------------------------------------------------------------------------------- /spellbook/supabase/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/docker-compose.yml -------------------------------------------------------------------------------- /spellbook/supabase/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/example/README.md -------------------------------------------------------------------------------- /spellbook/supabase/example/sql/posts_comments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/example/sql/posts_comments.sql -------------------------------------------------------------------------------- /spellbook/supabase/example/sql/tags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/example/sql/tags.sql -------------------------------------------------------------------------------- /spellbook/supabase/example/sql/test_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/example/sql/test_data.sql -------------------------------------------------------------------------------- /spellbook/supabase/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/reset.sh -------------------------------------------------------------------------------- /spellbook/supabase/terraform/cloudfront-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/cloudfront-infrastructure/README.md -------------------------------------------------------------------------------- /spellbook/supabase/terraform/cloudfront-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/cloudfront-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/supabase/terraform/cloudfront-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/cloudfront-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/supabase/terraform/cloudfront-infrastructure/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/cloudfront-infrastructure/terraform.tfvars.example -------------------------------------------------------------------------------- /spellbook/supabase/terraform/cloudfront-infrastructure/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/cloudfront-infrastructure/variables.tf -------------------------------------------------------------------------------- /spellbook/supabase/terraform/main-infrastructure/common_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/main-infrastructure/common_variables.tf -------------------------------------------------------------------------------- /spellbook/supabase/terraform/main-infrastructure/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/main-infrastructure/main.tf -------------------------------------------------------------------------------- /spellbook/supabase/terraform/main-infrastructure/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/main-infrastructure/outputs.tf -------------------------------------------------------------------------------- /spellbook/supabase/terraform/main-infrastructure/scripts/setup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/terraform/main-infrastructure/scripts/setup_script.sh -------------------------------------------------------------------------------- /spellbook/supabase/volumes/api/kong.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/api/kong.yml -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/_supabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/_supabase.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/init/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/init/data.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/init/test_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/init/test_data.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/jwt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/jwt.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/logs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/logs.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/pooler.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/pooler.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/realtime.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/realtime.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/roles.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/db/webhooks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/db/webhooks.sql -------------------------------------------------------------------------------- /spellbook/supabase/volumes/functions/hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/functions/hello/index.ts -------------------------------------------------------------------------------- /spellbook/supabase/volumes/functions/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/functions/main/index.ts -------------------------------------------------------------------------------- /spellbook/supabase/volumes/logs/vector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/logs/vector.yml -------------------------------------------------------------------------------- /spellbook/supabase/volumes/pooler/pooler.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/supabase/volumes/pooler/pooler.exs -------------------------------------------------------------------------------- /spellbook/whitelist-waf.exmaple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sunwood-ai-labs/AMATERASU/HEAD/spellbook/whitelist-waf.exmaple.csv --------------------------------------------------------------------------------