├── .copier-answers.yml ├── .github ├── assets │ ├── dns_a_record.png │ ├── ff_api_base_url.png │ ├── ff_clone.png │ ├── ff_publish.png │ ├── idp_add_provider.png │ ├── idp_emailpass.png │ ├── idp_enable.png │ ├── setup_local.png │ └── skaffold_dev_terminal.png └── workflows │ ├── deployment_gke_demo.yaml │ ├── deployment_gke_develop.yaml │ ├── e2e_gke_api_test.yaml │ ├── unit_test_front_end_node.yaml │ ├── unit_test_linter_authentication.yaml │ ├── unit_test_linter_common.yaml │ ├── unit_test_linter_jobs_service.yaml │ ├── unit_test_linter_llm_service.yaml │ ├── unit_test_linter_rules_engine.yaml │ ├── unit_test_linter_tools_service.yaml │ └── unit_test_linter_user_management.yaml ├── .gitignore ├── .pylintrc ├── .sb └── module_answers │ ├── frontend_react.yaml │ ├── huggingface_service.yaml │ ├── model_service.yaml │ ├── rules_engine.yaml │ ├── terraform_gke.yaml │ ├── terraform_gke_ingress.yaml │ └── tools_service.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INSTALL-basic.md ├── INSTALL.md ├── LICENSE ├── README.md ├── components ├── authentication │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── kustomize │ │ ├── base │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── requirements-test.txt │ ├── requirements.txt │ ├── scripts │ │ ├── after_deploy.sh │ │ ├── before_deploy.sh │ │ └── user_tool.py │ ├── skaffold.yaml │ └── src │ │ ├── config.py │ │ ├── main.py │ │ ├── metrics.py │ │ ├── routes │ │ ├── conftest.py │ │ ├── password.py │ │ ├── password_test.py │ │ ├── refresh_token.py │ │ ├── refresh_token_test.py │ │ ├── sign_in.py │ │ ├── sign_in_test.py │ │ ├── sign_up.py │ │ ├── sign_up_test.py │ │ ├── validate_token.py │ │ └── validate_token_test.py │ │ ├── schemas │ │ ├── error_schema.py │ │ ├── generate_token_schema.py │ │ ├── inpsace_token_schema.py │ │ ├── password_schema.py │ │ ├── schema_examples.py │ │ ├── sign_in_schema.py │ │ ├── sign_up_schema.py │ │ └── validate_token_schema.py │ │ ├── services │ │ ├── __init__.py │ │ ├── create_session_service.py │ │ ├── refresh_token_service.py │ │ ├── refresh_token_service_test.py │ │ ├── validation_service.py │ │ └── validation_service_test.py │ │ ├── testing │ │ └── test_config.py │ │ └── utils │ │ ├── __init__.py │ │ └── exception_handler.py ├── common │ ├── Dockerfile │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── src │ │ └── common │ │ ├── __init__.py │ │ ├── config.py │ │ ├── db_client.py │ │ ├── models │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── base_model.py │ │ ├── batch_job.py │ │ ├── custom_fields.py │ │ ├── learning_record.py │ │ ├── llm.py │ │ ├── llm_query.py │ │ ├── node_item.py │ │ ├── session.py │ │ ├── staff.py │ │ ├── user.py │ │ └── user_event.py │ │ ├── monitoring │ │ ├── __init__.py │ │ ├── metrics.py │ │ └── middleware.py │ │ ├── schemas │ │ └── batch_job_schemas.py │ │ ├── testing │ │ ├── __init__.py │ │ ├── bq_client_fixture.py │ │ ├── client_with_emulator.py │ │ ├── example_objects.py │ │ └── firestore_emulator.py │ │ └── utils │ │ ├── __init__.py │ │ ├── auth_service.py │ │ ├── authentication.py │ │ ├── batch_jobs.py │ │ ├── bq_client.py │ │ ├── bq_helper.py │ │ ├── cache_service.py │ │ ├── collection_references.py │ │ ├── common_api_handler.py │ │ ├── config.py │ │ ├── content_processing.py │ │ ├── context_vars.py │ │ ├── custom_validator.py │ │ ├── errors.py │ │ ├── gcs_adapter.py │ │ ├── helper.py │ │ ├── http_exceptions.py │ │ ├── inspace.py │ │ ├── jwt_creds.py │ │ ├── jwt_token_generator.py │ │ ├── kf_job_app.py │ │ ├── logging_handler.py │ │ ├── pagination.py │ │ ├── pagination_logic.py │ │ ├── request_handler.py │ │ ├── rest_method.py │ │ ├── sanitization_service.py │ │ ├── schema_validator.py │ │ ├── secrets.py │ │ ├── sessions.py │ │ ├── sessions_test.py │ │ ├── sorting.py │ │ ├── sorting_logic.py │ │ ├── token_handler.py │ │ └── user_handler.py ├── common_ml │ ├── Dockerfile │ ├── requirements.txt │ └── skaffold.yaml ├── frontend_newreact │ ├── README.md │ └── webapp │ │ ├── .firebaserc │ │ ├── ReactMarkdownMock.tsx │ │ ├── ReactPdfMock.tsx │ │ ├── ReactSyntaxHighlighterMock.tsx │ │ ├── __mocks__ │ │ ├── styleMock.js │ │ └── svgMock.js │ │ ├── __tests__ │ │ └── components │ │ │ └── ChatScreen.test.tsx │ │ ├── babel.config.js │ │ ├── config.env │ │ ├── custom.d.ts │ │ ├── firebase.json │ │ ├── index.html │ │ ├── jest.config.ts │ │ ├── jest.setup.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ ├── assets │ │ │ └── images │ │ │ │ ├── cloudlab.png │ │ │ │ ├── gcp.png │ │ │ │ ├── gcp_orig.png │ │ │ │ ├── gemini-icon.png │ │ │ │ ├── google.png │ │ │ │ ├── nasa.png │ │ │ │ ├── navy_logo.png │ │ │ │ ├── rit-brain-orig.png │ │ │ │ ├── rit-brain.png │ │ │ │ ├── rit-logo.png │ │ │ │ ├── rit-orig.png │ │ │ │ └── rit.png │ │ ├── favicon.svg │ │ └── locales │ │ │ ├── af │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ak │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── am │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ar │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── az │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── be │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bg │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bho │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bm │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bs │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ca │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ceb │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ckb │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── co │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── cs │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── cy │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── da │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── de │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── doi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── dv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ee │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── el │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── en │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── eo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── es │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── et │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── eu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fa │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fil │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fy │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ga │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gd │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gom │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ha │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── haw │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── he │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hmn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ht │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hy │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── id │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ig │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ilo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── is │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── it │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ja │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── jv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ka │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── kk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── km │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── kn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ko │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── kri │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ku │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ky │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── la │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lb │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ln │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lus │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mai │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mg │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ml │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ms │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── my │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ne │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── nl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── no │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── nso │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ny │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── om │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── or │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── pa │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── pl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ps │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── pt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── qu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ro │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ru │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── rw │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sa │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sd │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── si │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sm │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── so │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sq │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── st │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── su │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sw │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ta │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── te │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tg │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── th │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ti │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ts │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ug │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── uk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ur │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── uz │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── vi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── xh │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── yi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── yo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── zh │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ └── zu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── chat-icon.svg │ │ │ ├── cloud.svg │ │ │ ├── gemini-icon.svg │ │ │ ├── history-icon.svg │ │ │ ├── settings-icon.svg │ │ │ └── source-icon.svg │ │ ├── components │ │ │ ├── ChatHistory.tsx │ │ │ ├── ChatScreen.tsx │ │ │ ├── DocumentModal.tsx │ │ │ ├── Header.tsx │ │ │ ├── Loading.tsx │ │ │ ├── LoadingSpinner.tsx │ │ │ ├── Main.tsx │ │ │ ├── ModelBrowser.tsx │ │ │ ├── ProfileMenu.tsx │ │ │ ├── ReferenceChip.tsx │ │ │ ├── SettingsDrawer.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SignInForm.tsx │ │ │ ├── SourceSelector.tsx │ │ │ ├── SourcesTable.tsx │ │ │ ├── UploadModal.tsx │ │ │ ├── WelcomeFeatures.tsx │ │ │ └── profile-menu.tsx │ │ ├── contexts │ │ │ ├── AuthContext.tsx │ │ │ └── ModelContext.tsx │ │ ├── i18n.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── lib │ │ │ ├── api.ts │ │ │ ├── auth.ts │ │ │ ├── dom.ts │ │ │ ├── env.ts │ │ │ ├── firebase.ts │ │ │ ├── sidebarStore.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── pages │ │ │ ├── AddSource.tsx │ │ │ ├── PasswordReset.tsx │ │ │ ├── SignIn.tsx │ │ │ ├── Sources.tsx │ │ │ └── UpdateSource.tsx │ │ └── styles │ │ │ └── ChatScreen.css │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts ├── frontend_react │ ├── Dockerfile │ ├── README.md │ ├── deploy.sh │ ├── deployment_scripts │ │ ├── 1_deploy_install_dependencies.sh │ │ ├── 2_deploy_configure_firebase.sh │ │ ├── 3_deploy_set_env_vars.sh │ │ └── 4_deploy_build_and_deploy.sh │ ├── kustomize │ │ ├── base │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── manifests │ │ └── cloudrun-service.yaml │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── webapp │ │ ├── .babelrc │ │ ├── .dockerignore │ │ ├── .eslintrc.cjs │ │ ├── .firebaserc │ │ ├── .gcloudignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── DockerfileBun │ │ ├── __mocks__ │ │ └── user.ts │ │ ├── __tests__ │ │ ├── components │ │ │ ├── routerContainer.test.tsx │ │ │ └── userProfile.test.tsx │ │ ├── navigation │ │ │ ├── footer.test.tsx │ │ │ └── navbar.test.tsx │ │ └── pages │ │ ├── bunfig.toml │ │ ├── config.development.env │ │ ├── config.production.env │ │ ├── firebase.json │ │ ├── functions │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── bun.lockb │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.dev.json │ │ └── tsconfig.json │ │ ├── happydom.ts │ │ ├── index.html │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── assets │ │ │ └── images │ │ │ │ ├── cloudlab.png │ │ │ │ ├── gcp.png │ │ │ │ ├── gcp_orig.png │ │ │ │ ├── google.png │ │ │ │ ├── nasa.png │ │ │ │ ├── navy_logo.png │ │ │ │ ├── rit-brain-orig.png │ │ │ │ ├── rit-brain.png │ │ │ │ ├── rit-logo.png │ │ │ │ ├── rit-orig.png │ │ │ │ └── rit.png │ │ ├── index.html │ │ └── locales │ │ │ ├── af │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ak │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── am │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ar │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── az │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── be │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bg │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bho │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bm │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── bs │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ca │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ceb │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ckb │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── co │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── cs │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── cy │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── da │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── de │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── doi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── dv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ee │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── el │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── en │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── eo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── es │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── et │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── eu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fa │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fil │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── fy │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ga │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gd │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gom │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── gu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ha │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── haw │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── he │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hmn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ht │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── hy │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── id │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ig │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ilo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── is │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── it │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ja │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── jv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ka │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── kk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── km │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── kn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ko │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── kri │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ku │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ky │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── la │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lb │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ln │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lus │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── lv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mai │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mg │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ml │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ms │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── mt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── my │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ne │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── nl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── no │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── nso │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ny │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── om │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── or │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── pa │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── pl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ps │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── pt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── qu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ro │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ru │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── rw │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sa │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sd │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── si │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sm │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sn │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── so │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sq │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── st │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── su │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sv │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── sw │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ta │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── te │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tg │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── th │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ti │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tl │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tr │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ts │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── tt │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ug │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── uk │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── ur │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── uz │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── vi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── xh │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── yi │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── yo │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ ├── zh │ │ │ ├── auth.json │ │ │ └── translation.json │ │ │ └── zu │ │ │ ├── auth.json │ │ │ └── translation.json │ │ ├── scripts │ │ ├── translate.bun.ts │ │ └── translate.ts │ │ ├── setupTests.ts │ │ ├── src │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── react.svg │ │ │ └── styles.css │ │ ├── components │ │ │ ├── Collapse.tsx │ │ │ ├── DeleteFilesModal.tsx │ │ │ ├── DocumentUpload.tsx │ │ │ ├── Expander.tsx │ │ │ ├── Filter.tsx │ │ │ ├── RouteContainer.tsx │ │ │ ├── Table.tsx │ │ │ ├── UserProfile.tsx │ │ │ ├── banner │ │ │ │ └── GlobalAlert.tsx │ │ │ ├── chat │ │ │ │ ├── Chat.tsx │ │ │ │ ├── ChatInput.tsx │ │ │ │ ├── ChatWindow.tsx │ │ │ │ ├── Configuration.tsx │ │ │ │ ├── IconBar.tsx │ │ │ │ └── RecentConversations.tsx │ │ │ ├── forms │ │ │ │ ├── ChatUploadForm.tsx │ │ │ │ ├── FieldErrorMessage.tsx │ │ │ │ ├── FileListDisplay.tsx │ │ │ │ ├── FormFields.tsx │ │ │ │ ├── QueryEngineForm.tsx │ │ │ │ └── fields │ │ │ │ │ ├── BooleanField.tsx │ │ │ │ │ ├── DateField.tsx │ │ │ │ │ ├── FileNestedField.tsx │ │ │ │ │ ├── FileUploadField.tsx │ │ │ │ │ ├── ListField.tsx │ │ │ │ │ ├── MultiSelectField.tsx │ │ │ │ │ ├── PersonaListField.tsx │ │ │ │ │ ├── SelectField.tsx │ │ │ │ │ ├── StringField.tsx │ │ │ │ │ ├── TeamListField.tsx │ │ │ │ │ └── TextareaField.tsx │ │ │ ├── query │ │ │ │ ├── Configuration.tsx │ │ │ │ ├── IconBar.tsx │ │ │ │ ├── Query.tsx │ │ │ │ ├── QueryInput.tsx │ │ │ │ ├── QueryWindow.tsx │ │ │ │ ├── RecentQueries.tsx │ │ │ │ └── References.tsx │ │ │ └── typography │ │ │ │ ├── Header.tsx │ │ │ │ └── SubHeader.tsx │ │ ├── contexts │ │ │ ├── auth.tsx │ │ │ └── configContext.tsx │ │ ├── i18n.ts │ │ ├── main.tsx │ │ ├── navigation │ │ │ ├── Footer.tsx │ │ │ ├── LanguageChanger.tsx │ │ │ ├── Loading.tsx │ │ │ ├── MainRoutes.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── PasswordResetForm.tsx │ │ │ ├── RouteList.tsx │ │ │ ├── Search.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SignInForm.tsx │ │ │ ├── ThemeChanger.tsx │ │ │ └── UserDropdown.tsx │ │ ├── routes │ │ │ ├── AIRoute.tsx │ │ │ ├── About.tsx │ │ │ ├── AnalyticsOutlet.tsx │ │ │ ├── AppRouter.tsx │ │ │ ├── Conversations.tsx │ │ │ ├── FirestoreUsers.tsx │ │ │ ├── Home.tsx │ │ │ ├── Icons.tsx │ │ │ ├── NotFound.tsx │ │ │ ├── Profile.tsx │ │ │ ├── Queries.tsx │ │ │ ├── QueryEngineAdmin.tsx │ │ │ ├── QueryEngineEdit.tsx │ │ │ ├── QueryEngineJobs.tsx │ │ │ ├── QueryEngines.tsx │ │ │ ├── SignOut.tsx │ │ │ ├── Signin.tsx │ │ │ └── Table.tsx │ │ ├── store │ │ │ ├── alert.ts │ │ │ ├── index.ts │ │ │ ├── theme.ts │ │ │ └── user.ts │ │ ├── templates │ │ │ ├── Authenticated.tsx │ │ │ ├── Main.tsx │ │ │ ├── MainContent.tsx │ │ │ └── Unauthenticated.tsx │ │ ├── utils │ │ │ ├── AppConfig.ts │ │ │ ├── api.ts │ │ │ ├── auth.ts │ │ │ ├── data.ts │ │ │ ├── dom.ts │ │ │ ├── env.ts │ │ │ ├── firebase.ts │ │ │ ├── firestore.ts │ │ │ ├── forms.ts │ │ │ ├── lang.ts │ │ │ ├── models.ts │ │ │ ├── routing.ts │ │ │ ├── translate.ts │ │ │ └── types.ts │ │ └── vite-env.d.ts │ │ ├── storage.rules │ │ ├── tsconfig.json │ │ ├── uno.config.ts │ │ └── vite.config.ts ├── jobs_service │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── kustomize │ │ ├── base │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ ├── role.yaml │ │ │ ├── role_binding.yaml │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── src │ │ ├── __init__.py │ │ ├── config.py │ │ ├── main.py │ │ ├── routes │ │ ├── __init__.py │ │ ├── jobs.py │ │ └── jobs_test.py │ │ ├── schemas │ │ ├── __init__.py │ │ ├── error_schema.py │ │ ├── jobs_schema.py │ │ └── schema_examples.py │ │ ├── testing │ │ ├── response.json │ │ └── test_config.py │ │ └── utils │ │ ├── __init__.py │ │ └── errors.py ├── llm_service │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── docs │ │ └── QUERY_ENGINES.md │ ├── kustomize │ │ ├── base │ │ │ ├── backend_config.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ ├── role.yaml │ │ │ ├── role_binding.yaml │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── notebooks │ │ ├── AgentBuilder_Search_on_Website.ipynb │ │ ├── AgentModels.ipynb │ │ ├── ArtifactRegistry.ipynb │ │ ├── ChatAgent.ipynb │ │ ├── ChatSummary.ipynb │ │ ├── ChunkingApproaches.ipynb │ │ ├── Chunking_Test.ipynb │ │ ├── Config.ipynb │ │ ├── DotProductSimilarity.ipynb │ │ ├── EmailTool.ipynb │ │ ├── Embeddings.ipynb │ │ ├── Gemini.ipynb │ │ ├── LCAgent0.ipynb │ │ ├── LCAgent1.ipynb │ │ ├── LCAgent2.ipynb │ │ ├── MG_Llama2Chat.ipynb │ │ ├── PGVector.ipynb │ │ ├── Query.ipynb │ │ ├── QueryFilters.ipynb │ │ ├── QueryTruss.ipynb │ │ ├── Query_Engine_Build_test.ipynb │ │ ├── RBAC.ipynb │ │ ├── Rerank_Query_Results.ipynb │ │ ├── RoutingAgent.ipynb │ │ ├── SQLAgent.ipynb │ │ ├── Sharepoint.ipynb │ │ ├── TaskAgent.ipynb │ │ ├── TestLoading.ipynb │ │ └── TextToSQLTool.ipynb │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── src │ │ ├── __init__.py │ │ ├── config │ │ ├── __init__.py │ │ ├── agent_config.json │ │ ├── config.py │ │ ├── document_manifest.json │ │ ├── model_config.py │ │ ├── model_config_test.py │ │ ├── models.json │ │ ├── onedrive_config.py │ │ ├── utils.py │ │ └── vector_store_config.py │ │ ├── main.py │ │ ├── metrics.py │ │ ├── routes │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── agent_plan.py │ │ ├── agent_plan_test.py │ │ ├── agent_test.py │ │ ├── chat.py │ │ ├── chat_test.py │ │ ├── llm.py │ │ ├── llm_test.py │ │ ├── query.py │ │ └── query_test.py │ │ ├── run_batch_job.py │ │ ├── schemas │ │ ├── __init__.py │ │ ├── agent_schema.py │ │ ├── error_schema.py │ │ ├── llm_schema.py │ │ └── schema_examples.py │ │ ├── services │ │ ├── __init__.py │ │ ├── agents │ │ │ ├── __init__.py │ │ │ ├── agent_prompts.py │ │ │ ├── agent_service.py │ │ │ ├── agent_service_test.py │ │ │ ├── agent_tools.py │ │ │ ├── agent_tools_test.py │ │ │ ├── agents.py │ │ │ ├── db_agent.py │ │ │ ├── db_agent_test.py │ │ │ ├── routing_agent.py │ │ │ ├── routing_agent_test.py │ │ │ └── utils.py │ │ ├── embeddings.py │ │ ├── embeddings_test.py │ │ ├── langchain_service.py │ │ ├── langchain_service_test.py │ │ ├── llm_generate.py │ │ ├── llm_generate_test.py │ │ └── query │ │ │ ├── __init__.py │ │ │ ├── data_source.py │ │ │ ├── data_source_test.py │ │ │ ├── query_prompt_config.py │ │ │ ├── query_prompts.py │ │ │ ├── query_prompts_test.py │ │ │ ├── query_service.py │ │ │ ├── query_service_test.py │ │ │ ├── sharepoint_datasource.py │ │ │ ├── vector_store.py │ │ │ ├── vertex_search.py │ │ │ ├── web_datasource.py │ │ │ ├── web_datasource_job.py │ │ │ └── web_datasource_test.py │ │ ├── testing │ │ ├── llm_generate.json │ │ ├── mg_llama2.py │ │ ├── response.json │ │ ├── test_config.py │ │ └── truss_llama2.py │ │ └── utils │ │ ├── __init__.py │ │ ├── errors.py │ │ ├── file_helper.py │ │ ├── file_helper_test.py │ │ ├── gcs_helper.py │ │ ├── html_helper.py │ │ └── text_helper.py ├── redis │ └── skaffold.yaml ├── rules_engine │ ├── Dockerfile │ ├── kustomize │ │ ├── base │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── src │ │ ├── config.py │ │ ├── main.py │ │ ├── models │ │ ├── rule.py │ │ ├── rule_test.py │ │ ├── ruleset.py │ │ └── ruleset_test.py │ │ ├── routes │ │ ├── __init__.py │ │ ├── rules.py │ │ └── rulesets.py │ │ ├── rules_runners │ │ ├── base_runner.py │ │ ├── gorules.py │ │ └── gorules_test.py │ │ ├── schemas │ │ ├── evaluation_result.py │ │ ├── rule.py │ │ └── ruleset.py │ │ └── utils │ │ └── __init__.py ├── tools_service │ ├── Dockerfile │ ├── README.md │ ├── kustomize │ │ ├── base │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── src │ │ ├── __init__.py │ │ ├── config.py │ │ ├── main.py │ │ ├── routes │ │ └── workspace.py │ │ ├── schemas │ │ ├── email.py │ │ └── sheets.py │ │ ├── services │ │ ├── database_service.py │ │ ├── email_composer.py │ │ ├── gmail_service.py │ │ ├── gmail_service_test.py │ │ └── sheets_service.py │ │ └── utils │ │ ├── google_credential.py │ │ └── google_credential_test.py ├── user_management │ ├── .dockerignore │ ├── Dockerfile │ ├── kustomize │ │ ├── base │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── properties.env │ │ │ └── service.yaml │ │ └── hpa │ │ │ ├── hpa.yaml │ │ │ └── kustomization.yaml │ ├── requirements-test.txt │ ├── requirements.txt │ ├── skaffold.yaml │ └── src │ │ ├── __init__.py │ │ ├── config.py │ │ ├── data │ │ └── profile_fields.json │ │ ├── main.py │ │ ├── metrics.py │ │ ├── routes │ │ ├── __init__.py │ │ ├── action.py │ │ ├── action_test.py │ │ ├── application.py │ │ ├── application_test.py │ │ ├── association_group.py │ │ ├── association_group_test.py │ │ ├── module.py │ │ ├── module_test.py │ │ ├── permission.py │ │ ├── permission_test.py │ │ ├── session.py │ │ ├── session_test.py │ │ ├── staff.py │ │ ├── staff_test.py │ │ ├── user.py │ │ ├── user_event.py │ │ ├── user_group.py │ │ ├── user_group_test.py │ │ └── user_test.py │ │ ├── schemas │ │ ├── action_schema.py │ │ ├── application_schema.py │ │ ├── association_group_schema.py │ │ ├── error_schema.py │ │ ├── module_schema.py │ │ ├── permission_schema.py │ │ ├── schema_examples.py │ │ ├── session_schema.py │ │ ├── staff_schema.py │ │ ├── user_event.py │ │ ├── user_group_schema.py │ │ └── user_schema.py │ │ ├── services │ │ ├── agent.py │ │ ├── association_group_handler.py │ │ ├── association_group_handler_test.py │ │ ├── collection_handler.py │ │ ├── collection_handler_test.py │ │ ├── helper.py │ │ ├── json_import.py │ │ ├── learner.py │ │ ├── permissions.py │ │ └── staff.py │ │ ├── testing │ │ ├── staffs.json │ │ └── test_config.py │ │ └── utils │ │ ├── __init__.py │ │ └── setup.sh └── webscraper │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ ├── run_tests.sh │ ├── scrape_url.py │ ├── skaffold.yaml │ └── webscraper_api.go ├── docs ├── AUTH.md ├── CICD.md ├── CONFIG.md ├── DEVELOPMENT.md ├── assets │ ├── add_user.jpg │ ├── firebase_add_identity.png │ └── firebase_google_provider.png └── index.md ├── experimental ├── llm_truss │ ├── README.md │ ├── llama2-7b-sample │ │ ├── README.md │ │ ├── config.yaml │ │ ├── kustomize │ │ │ └── base │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── properties.env │ │ │ │ └── service.yaml │ │ ├── main.py │ │ ├── model │ │ │ └── model.py │ │ ├── requirements.txt │ │ └── skaffold.yaml │ ├── main.py │ └── send_prompt.sh └── vllm_gemma │ ├── README.md │ └── vllm-gemma-2b-it.yaml ├── firebase.json ├── ingress ├── kustomize │ ├── genie-llama2 │ │ ├── frontend_config.yaml │ │ ├── ingress.yaml │ │ ├── kustomization.yaml │ │ └── managed_cert.yaml │ ├── genie │ │ ├── frontend_config.yaml │ │ ├── ingress.yaml │ │ ├── kustomization.yaml │ │ └── managed_cert.yaml │ └── gke │ │ ├── frontend_config.yaml │ │ ├── ingress.yaml │ │ ├── kustomization.yaml │ │ └── managed_cert.yaml └── skaffold.yaml ├── sb.yaml ├── setup.cfg ├── setup ├── setup_ksa.sh ├── setup_model_env.sh └── setup_pgvector.py ├── skaffold.yaml ├── terraform ├── modules │ ├── cloudbuild │ │ ├── main.tf │ │ └── variables.tf │ ├── cloudrun │ │ ├── main.tf │ │ └── variables.tf │ ├── compute_backend │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── providers.tf │ │ └── variables.tf │ ├── firebase │ │ ├── main.tf │ │ └── variables.tf │ ├── gke │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── ingress_gce │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── ingress_nginx │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── project_services │ │ ├── main.tf │ │ └── variables.tf │ ├── service_account │ │ ├── main.tf │ │ └── variables.tf │ ├── terraform_cicd │ │ ├── main.tf │ │ └── variables.tf │ └── vpc_network │ │ ├── main.tf │ │ └── variables.tf └── stages │ ├── 0-jumphost │ ├── bastion_startup.sh │ ├── main.tf │ ├── terraform.tfvars │ └── variables.tf │ ├── 1-bootstrap │ ├── main.tf │ ├── output.tf │ ├── terraform.tfvars │ └── variables.tf │ ├── 2-foundation │ ├── artifact_registry.tf │ ├── backend.tf │ ├── firestore_setup.tf │ ├── iam.tf │ ├── identity_platform.tf │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ ├── terraform.tfvars │ ├── tf_output.tfvars │ └── variables.tf │ ├── 3-gke-ingress │ ├── backend.tf │ ├── iam.tf │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ ├── terraform.tfvars │ ├── tf_output.tfvars │ └── variables.tf │ ├── 3-gke │ ├── backend.tf │ ├── iam.tf │ ├── main.tf │ ├── providers.tf │ ├── terraform.tfvars │ └── variables.tf │ ├── 3-httplb-cloudrun │ └── model_service_neg.tf │ └── 4-llm │ ├── dummy_collections_create.py │ ├── dummy_collections_delete.py │ ├── genai-sample-doc.pdf │ ├── main.tf │ ├── terraform.tfvars │ └── variables.tf ├── tests ├── __init__.py ├── e2e │ ├── e2e_utils.py │ ├── requirements.txt │ └── utils │ │ ├── database_cleanup.py │ │ ├── database_setup.py │ │ ├── e2e_config.json │ │ └── port_forward.py └── load_testing │ ├── README.md │ ├── create_users.py │ ├── example_config.py │ ├── locustfile.py │ └── requirements.txt ├── tools ├── add_license_header.sh ├── auth_with_sa.sh └── build_query_engine.py └── utils ├── alloy_db.sh ├── cloudsql_db.sh ├── disable_org_policies.sh ├── init_env_vars.sh ├── install_firebase.sh ├── run_unit_tests.sh ├── setup_venv.sh └── upgrade_node_pool.sh /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.github/assets/dns_a_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/dns_a_record.png -------------------------------------------------------------------------------- /.github/assets/ff_api_base_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/ff_api_base_url.png -------------------------------------------------------------------------------- /.github/assets/ff_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/ff_clone.png -------------------------------------------------------------------------------- /.github/assets/ff_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/ff_publish.png -------------------------------------------------------------------------------- /.github/assets/idp_add_provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/idp_add_provider.png -------------------------------------------------------------------------------- /.github/assets/idp_emailpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/idp_emailpass.png -------------------------------------------------------------------------------- /.github/assets/idp_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/idp_enable.png -------------------------------------------------------------------------------- /.github/assets/setup_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/setup_local.png -------------------------------------------------------------------------------- /.github/assets/skaffold_dev_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/assets/skaffold_dev_terminal.png -------------------------------------------------------------------------------- /.github/workflows/deployment_gke_demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/deployment_gke_demo.yaml -------------------------------------------------------------------------------- /.github/workflows/deployment_gke_develop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/deployment_gke_develop.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e_gke_api_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/e2e_gke_api_test.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_front_end_node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_front_end_node.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_authentication.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_common.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_jobs_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_jobs_service.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_llm_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_llm_service.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_rules_engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_rules_engine.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_tools_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_tools_service.yaml -------------------------------------------------------------------------------- /.github/workflows/unit_test_linter_user_management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.github/workflows/unit_test_linter_user_management.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.pylintrc -------------------------------------------------------------------------------- /.sb/module_answers/frontend_react.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/frontend_react.yaml -------------------------------------------------------------------------------- /.sb/module_answers/huggingface_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/huggingface_service.yaml -------------------------------------------------------------------------------- /.sb/module_answers/model_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/model_service.yaml -------------------------------------------------------------------------------- /.sb/module_answers/rules_engine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/rules_engine.yaml -------------------------------------------------------------------------------- /.sb/module_answers/terraform_gke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/terraform_gke.yaml -------------------------------------------------------------------------------- /.sb/module_answers/terraform_gke_ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/terraform_gke_ingress.yaml -------------------------------------------------------------------------------- /.sb/module_answers/tools_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/.sb/module_answers/tools_service.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/INSTALL-basic.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/README.md -------------------------------------------------------------------------------- /components/authentication/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/.dockerignore -------------------------------------------------------------------------------- /components/authentication/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/Dockerfile -------------------------------------------------------------------------------- /components/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/README.md -------------------------------------------------------------------------------- /components/authentication/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/authentication/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /components/authentication/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/authentication/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/authentication/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/authentication/kustomize/hpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/kustomize/hpa/kustomization.yaml -------------------------------------------------------------------------------- /components/authentication/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/requirements-test.txt -------------------------------------------------------------------------------- /components/authentication/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/requirements.txt -------------------------------------------------------------------------------- /components/authentication/scripts/after_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/scripts/after_deploy.sh -------------------------------------------------------------------------------- /components/authentication/scripts/before_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/scripts/before_deploy.sh -------------------------------------------------------------------------------- /components/authentication/scripts/user_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/scripts/user_tool.py -------------------------------------------------------------------------------- /components/authentication/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/skaffold.yaml -------------------------------------------------------------------------------- /components/authentication/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/config.py -------------------------------------------------------------------------------- /components/authentication/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/main.py -------------------------------------------------------------------------------- /components/authentication/src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/metrics.py -------------------------------------------------------------------------------- /components/authentication/src/routes/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/conftest.py -------------------------------------------------------------------------------- /components/authentication/src/routes/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/password.py -------------------------------------------------------------------------------- /components/authentication/src/routes/password_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/password_test.py -------------------------------------------------------------------------------- /components/authentication/src/routes/refresh_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/refresh_token.py -------------------------------------------------------------------------------- /components/authentication/src/routes/refresh_token_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/refresh_token_test.py -------------------------------------------------------------------------------- /components/authentication/src/routes/sign_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/sign_in.py -------------------------------------------------------------------------------- /components/authentication/src/routes/sign_in_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/sign_in_test.py -------------------------------------------------------------------------------- /components/authentication/src/routes/sign_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/sign_up.py -------------------------------------------------------------------------------- /components/authentication/src/routes/sign_up_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/sign_up_test.py -------------------------------------------------------------------------------- /components/authentication/src/routes/validate_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/validate_token.py -------------------------------------------------------------------------------- /components/authentication/src/routes/validate_token_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/routes/validate_token_test.py -------------------------------------------------------------------------------- /components/authentication/src/schemas/error_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/schemas/error_schema.py -------------------------------------------------------------------------------- /components/authentication/src/schemas/password_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/schemas/password_schema.py -------------------------------------------------------------------------------- /components/authentication/src/schemas/schema_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/schemas/schema_examples.py -------------------------------------------------------------------------------- /components/authentication/src/schemas/sign_in_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/schemas/sign_in_schema.py -------------------------------------------------------------------------------- /components/authentication/src/schemas/sign_up_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/schemas/sign_up_schema.py -------------------------------------------------------------------------------- /components/authentication/src/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/authentication/src/services/validation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/services/validation_service.py -------------------------------------------------------------------------------- /components/authentication/src/testing/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/testing/test_config.py -------------------------------------------------------------------------------- /components/authentication/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/authentication/src/utils/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/authentication/src/utils/exception_handler.py -------------------------------------------------------------------------------- /components/common/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/Dockerfile -------------------------------------------------------------------------------- /components/common/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/requirements-test.txt -------------------------------------------------------------------------------- /components/common/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/requirements.txt -------------------------------------------------------------------------------- /components/common/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/skaffold.yaml -------------------------------------------------------------------------------- /components/common/src/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/__init__.py -------------------------------------------------------------------------------- /components/common/src/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/config.py -------------------------------------------------------------------------------- /components/common/src/common/db_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/db_client.py -------------------------------------------------------------------------------- /components/common/src/common/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/__init__.py -------------------------------------------------------------------------------- /components/common/src/common/models/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/agent.py -------------------------------------------------------------------------------- /components/common/src/common/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/base_model.py -------------------------------------------------------------------------------- /components/common/src/common/models/batch_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/batch_job.py -------------------------------------------------------------------------------- /components/common/src/common/models/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/custom_fields.py -------------------------------------------------------------------------------- /components/common/src/common/models/learning_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/learning_record.py -------------------------------------------------------------------------------- /components/common/src/common/models/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/llm.py -------------------------------------------------------------------------------- /components/common/src/common/models/llm_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/llm_query.py -------------------------------------------------------------------------------- /components/common/src/common/models/node_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/node_item.py -------------------------------------------------------------------------------- /components/common/src/common/models/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/session.py -------------------------------------------------------------------------------- /components/common/src/common/models/staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/staff.py -------------------------------------------------------------------------------- /components/common/src/common/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/user.py -------------------------------------------------------------------------------- /components/common/src/common/models/user_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/models/user_event.py -------------------------------------------------------------------------------- /components/common/src/common/monitoring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/monitoring/__init__.py -------------------------------------------------------------------------------- /components/common/src/common/monitoring/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/monitoring/metrics.py -------------------------------------------------------------------------------- /components/common/src/common/monitoring/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/monitoring/middleware.py -------------------------------------------------------------------------------- /components/common/src/common/schemas/batch_job_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/schemas/batch_job_schemas.py -------------------------------------------------------------------------------- /components/common/src/common/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/common/src/common/testing/bq_client_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/testing/bq_client_fixture.py -------------------------------------------------------------------------------- /components/common/src/common/testing/client_with_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/testing/client_with_emulator.py -------------------------------------------------------------------------------- /components/common/src/common/testing/example_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/testing/example_objects.py -------------------------------------------------------------------------------- /components/common/src/common/testing/firestore_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/testing/firestore_emulator.py -------------------------------------------------------------------------------- /components/common/src/common/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/__init__.py -------------------------------------------------------------------------------- /components/common/src/common/utils/auth_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/auth_service.py -------------------------------------------------------------------------------- /components/common/src/common/utils/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/authentication.py -------------------------------------------------------------------------------- /components/common/src/common/utils/batch_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/batch_jobs.py -------------------------------------------------------------------------------- /components/common/src/common/utils/bq_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/bq_client.py -------------------------------------------------------------------------------- /components/common/src/common/utils/bq_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/bq_helper.py -------------------------------------------------------------------------------- /components/common/src/common/utils/cache_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/cache_service.py -------------------------------------------------------------------------------- /components/common/src/common/utils/collection_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/collection_references.py -------------------------------------------------------------------------------- /components/common/src/common/utils/common_api_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/common_api_handler.py -------------------------------------------------------------------------------- /components/common/src/common/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/config.py -------------------------------------------------------------------------------- /components/common/src/common/utils/content_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/content_processing.py -------------------------------------------------------------------------------- /components/common/src/common/utils/context_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/context_vars.py -------------------------------------------------------------------------------- /components/common/src/common/utils/custom_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/custom_validator.py -------------------------------------------------------------------------------- /components/common/src/common/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/errors.py -------------------------------------------------------------------------------- /components/common/src/common/utils/gcs_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/gcs_adapter.py -------------------------------------------------------------------------------- /components/common/src/common/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/helper.py -------------------------------------------------------------------------------- /components/common/src/common/utils/http_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/http_exceptions.py -------------------------------------------------------------------------------- /components/common/src/common/utils/inspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/inspace.py -------------------------------------------------------------------------------- /components/common/src/common/utils/jwt_creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/jwt_creds.py -------------------------------------------------------------------------------- /components/common/src/common/utils/jwt_token_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/jwt_token_generator.py -------------------------------------------------------------------------------- /components/common/src/common/utils/kf_job_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/kf_job_app.py -------------------------------------------------------------------------------- /components/common/src/common/utils/logging_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/logging_handler.py -------------------------------------------------------------------------------- /components/common/src/common/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/pagination.py -------------------------------------------------------------------------------- /components/common/src/common/utils/pagination_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/pagination_logic.py -------------------------------------------------------------------------------- /components/common/src/common/utils/request_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/request_handler.py -------------------------------------------------------------------------------- /components/common/src/common/utils/rest_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/rest_method.py -------------------------------------------------------------------------------- /components/common/src/common/utils/sanitization_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/sanitization_service.py -------------------------------------------------------------------------------- /components/common/src/common/utils/schema_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/schema_validator.py -------------------------------------------------------------------------------- /components/common/src/common/utils/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/secrets.py -------------------------------------------------------------------------------- /components/common/src/common/utils/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/sessions.py -------------------------------------------------------------------------------- /components/common/src/common/utils/sessions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/sessions_test.py -------------------------------------------------------------------------------- /components/common/src/common/utils/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/sorting.py -------------------------------------------------------------------------------- /components/common/src/common/utils/sorting_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/sorting_logic.py -------------------------------------------------------------------------------- /components/common/src/common/utils/token_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/token_handler.py -------------------------------------------------------------------------------- /components/common/src/common/utils/user_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common/src/common/utils/user_handler.py -------------------------------------------------------------------------------- /components/common_ml/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common_ml/Dockerfile -------------------------------------------------------------------------------- /components/common_ml/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common_ml/requirements.txt -------------------------------------------------------------------------------- /components/common_ml/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/common_ml/skaffold.yaml -------------------------------------------------------------------------------- /components/frontend_newreact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/README.md -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/.firebaserc -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/ReactMarkdownMock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/ReactMarkdownMock.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/ReactPdfMock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/ReactPdfMock.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/__mocks__/svgMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/__mocks__/svgMock.js -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/babel.config.js -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/config.env -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/custom.d.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/firebase.json -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/index.html -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/jest.config.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/jest.setup.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/package-lock.json -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/package.json -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/postcss.config.js -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/public/favicon.svg -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/App.css -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/App.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/assets/chat-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/assets/chat-icon.svg -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/assets/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/assets/cloud.svg -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/components/Main.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/i18n.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/index.css -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/index.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/api.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/auth.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/dom.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/env.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/firebase.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/sidebarStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/sidebarStore.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/types.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/lib/utils.ts -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/pages/AddSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/pages/AddSource.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/pages/SignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/pages/SignIn.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/src/pages/Sources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/src/pages/Sources.tsx -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/tailwind.config.js -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/tsconfig.json -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/tsconfig.node.json -------------------------------------------------------------------------------- /components/frontend_newreact/webapp/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_newreact/webapp/vite.config.ts -------------------------------------------------------------------------------- /components/frontend_react/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/Dockerfile -------------------------------------------------------------------------------- /components/frontend_react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/README.md -------------------------------------------------------------------------------- /components/frontend_react/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/deploy.sh -------------------------------------------------------------------------------- /components/frontend_react/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/frontend_react/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /components/frontend_react/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/frontend_react/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/frontend_react/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/frontend_react/kustomize/hpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/kustomize/hpa/kustomization.yaml -------------------------------------------------------------------------------- /components/frontend_react/manifests/cloudrun-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/manifests/cloudrun-service.yaml -------------------------------------------------------------------------------- /components/frontend_react/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/requirements-test.txt -------------------------------------------------------------------------------- /components/frontend_react/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/requirements.txt -------------------------------------------------------------------------------- /components/frontend_react/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/skaffold.yaml -------------------------------------------------------------------------------- /components/frontend_react/webapp/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/.babelrc -------------------------------------------------------------------------------- /components/frontend_react/webapp/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | dist 3 | node_modules 4 | build 5 | -------------------------------------------------------------------------------- /components/frontend_react/webapp/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/.eslintrc.cjs -------------------------------------------------------------------------------- /components/frontend_react/webapp/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/.firebaserc -------------------------------------------------------------------------------- /components/frontend_react/webapp/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/.gcloudignore -------------------------------------------------------------------------------- /components/frontend_react/webapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/.gitignore -------------------------------------------------------------------------------- /components/frontend_react/webapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/Dockerfile -------------------------------------------------------------------------------- /components/frontend_react/webapp/DockerfileBun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/DockerfileBun -------------------------------------------------------------------------------- /components/frontend_react/webapp/__mocks__/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/__mocks__/user.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/__tests__/pages: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/frontend_react/webapp/bunfig.toml: -------------------------------------------------------------------------------- 1 | [test] 2 | preload = "./happydom.ts" 3 | -------------------------------------------------------------------------------- /components/frontend_react/webapp/config.development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/config.development.env -------------------------------------------------------------------------------- /components/frontend_react/webapp/config.production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/config.production.env -------------------------------------------------------------------------------- /components/frontend_react/webapp/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/firebase.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/.eslintrc.js -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/.gitignore -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/bun.lockb -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/package.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/src/index.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/functions/tsconfig.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/happydom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/happydom.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/index.html -------------------------------------------------------------------------------- /components/frontend_react/webapp/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/jest.config.js -------------------------------------------------------------------------------- /components/frontend_react/webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/package-lock.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/package.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/index.html -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/af/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/af/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ak/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ak/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/am/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/am/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ar/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ar/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/az/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/az/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/be/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/be/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/bg/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/bg/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/bm/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/bm/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/bs/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/bs/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ca/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ca/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/co/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/co/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/cs/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/cs/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/cy/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/cy/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/da/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/da/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/de/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/de/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/dv/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/dv/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ee/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ee/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/el/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/el/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/en/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/en/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/eo/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/eo/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/es/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/es/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/et/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/et/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/eu/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/eu/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/fa/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/fa/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/fi/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/fi/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/fr/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/fr/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/fy/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/fy/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ga/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ga/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/gd/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/gd/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/gl/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/gl/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/gn/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/gn/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/gu/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/gu/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ha/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ha/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/he/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/he/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/hi/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/hi/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/hr/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/hr/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ht/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ht/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/hu/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/hu/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/hy/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/hy/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/id/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/id/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ig/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ig/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/is/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/is/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/it/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/it/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ja/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ja/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/jv/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/jv/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ka/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ka/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/kk/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/kk/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/km/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/km/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/kn/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/kn/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ko/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ko/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ku/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ku/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ky/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ky/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/la/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/la/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/lb/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/lb/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ln/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ln/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/lo/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/lo/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/lt/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/lt/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/lv/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/lv/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/mg/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/mg/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/mi/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/mi/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/mk/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/mk/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ml/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ml/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/mn/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/mn/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/mr/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/mr/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ms/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ms/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/mt/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/mt/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/my/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/my/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ne/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ne/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/nl/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/nl/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/no/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/no/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ny/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ny/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/om/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/om/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/or/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/or/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/pa/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/pa/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/pl/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/pl/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ps/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ps/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/pt/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/pt/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/qu/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/qu/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ro/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ro/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ru/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ru/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/rw/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/rw/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sa/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sa/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sd/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sd/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/si/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/si/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sk/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sk/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sl/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sl/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sm/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sm/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sn/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sn/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/so/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/so/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sq/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sq/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sr/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sr/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/st/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/st/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/su/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/su/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sv/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sv/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/sw/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/sw/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ta/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ta/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/te/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/te/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/tg/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/tg/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/th/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/th/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/ti/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/ti/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/tk/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/tk/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/public/locales/tl/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/public/locales/tl/auth.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/scripts/translate.bun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/scripts/translate.bun.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/scripts/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/scripts/translate.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/setupTests.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/App.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/assets/react.svg -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/assets/styles.css -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/components/Table.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/contexts/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/contexts/auth.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/i18n.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/main.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/AIRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/AIRoute.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/About.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/AppRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/AppRouter.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/Home.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/Icons.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/NotFound.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/Profile.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/Queries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/Queries.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/SignOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/SignOut.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/Signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/Signin.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/routes/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/routes/Table.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/store/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/store/alert.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/store/index.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/store/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/store/theme.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/store/user.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/templates/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/templates/Main.tsx -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/AppConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/AppConfig.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/api.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/auth.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/data.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/dom.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/env.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/firebase.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/firestore.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/forms.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/lang.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/models.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/routing.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/translate.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/utils/types.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/src/vite-env.d.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/storage.rules -------------------------------------------------------------------------------- /components/frontend_react/webapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/tsconfig.json -------------------------------------------------------------------------------- /components/frontend_react/webapp/uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/uno.config.ts -------------------------------------------------------------------------------- /components/frontend_react/webapp/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/frontend_react/webapp/vite.config.ts -------------------------------------------------------------------------------- /components/jobs_service/.dockerignore: -------------------------------------------------------------------------------- 1 | kustomize 2 | skaffold.yaml 3 | -------------------------------------------------------------------------------- /components/jobs_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/Dockerfile -------------------------------------------------------------------------------- /components/jobs_service/README.md: -------------------------------------------------------------------------------- 1 | ## Installation 2 | 3 | -------------------------------------------------------------------------------- /components/jobs_service/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/jobs_service/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /components/jobs_service/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/jobs_service/kustomize/base/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/base/role.yaml -------------------------------------------------------------------------------- /components/jobs_service/kustomize/base/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/base/role_binding.yaml -------------------------------------------------------------------------------- /components/jobs_service/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/jobs_service/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/jobs_service/kustomize/hpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/kustomize/hpa/kustomization.yaml -------------------------------------------------------------------------------- /components/jobs_service/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/requirements-test.txt -------------------------------------------------------------------------------- /components/jobs_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/requirements.txt -------------------------------------------------------------------------------- /components/jobs_service/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/skaffold.yaml -------------------------------------------------------------------------------- /components/jobs_service/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/jobs_service/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/config.py -------------------------------------------------------------------------------- /components/jobs_service/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/main.py -------------------------------------------------------------------------------- /components/jobs_service/src/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/jobs_service/src/routes/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/routes/jobs.py -------------------------------------------------------------------------------- /components/jobs_service/src/routes/jobs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/routes/jobs_test.py -------------------------------------------------------------------------------- /components/jobs_service/src/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/jobs_service/src/schemas/error_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/schemas/error_schema.py -------------------------------------------------------------------------------- /components/jobs_service/src/schemas/jobs_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/schemas/jobs_schema.py -------------------------------------------------------------------------------- /components/jobs_service/src/schemas/schema_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/schemas/schema_examples.py -------------------------------------------------------------------------------- /components/jobs_service/src/testing/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/testing/response.json -------------------------------------------------------------------------------- /components/jobs_service/src/testing/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/testing/test_config.py -------------------------------------------------------------------------------- /components/jobs_service/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/jobs_service/src/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/jobs_service/src/utils/errors.py -------------------------------------------------------------------------------- /components/llm_service/.dockerignore: -------------------------------------------------------------------------------- 1 | kustomize 2 | skaffold.yaml 3 | -------------------------------------------------------------------------------- /components/llm_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/Dockerfile -------------------------------------------------------------------------------- /components/llm_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/README.md -------------------------------------------------------------------------------- /components/llm_service/docs/QUERY_ENGINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/docs/QUERY_ENGINES.md -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/backend_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/backend_config.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/role.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/role_binding.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/llm_service/kustomize/hpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/kustomize/hpa/kustomization.yaml -------------------------------------------------------------------------------- /components/llm_service/notebooks/AgentModels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/AgentModels.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/ArtifactRegistry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/ArtifactRegistry.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/ChatAgent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/ChatAgent.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/ChatSummary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/ChatSummary.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/ChunkingApproaches.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/ChunkingApproaches.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/Chunking_Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/Chunking_Test.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/Config.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/Config.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/EmailTool.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/EmailTool.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/Embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/Embeddings.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/Gemini.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/Gemini.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/LCAgent0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/LCAgent0.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/LCAgent1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/LCAgent1.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/LCAgent2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/LCAgent2.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/MG_Llama2Chat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/MG_Llama2Chat.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/PGVector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/PGVector.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/Query.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/Query.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/QueryFilters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/QueryFilters.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/QueryTruss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/QueryTruss.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/RBAC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/RBAC.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/RoutingAgent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/RoutingAgent.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/SQLAgent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/SQLAgent.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/Sharepoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/Sharepoint.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/TaskAgent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/TaskAgent.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/TestLoading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/TestLoading.ipynb -------------------------------------------------------------------------------- /components/llm_service/notebooks/TextToSQLTool.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/notebooks/TextToSQLTool.ipynb -------------------------------------------------------------------------------- /components/llm_service/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/requirements-test.txt -------------------------------------------------------------------------------- /components/llm_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/requirements.txt -------------------------------------------------------------------------------- /components/llm_service/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/skaffold.yaml -------------------------------------------------------------------------------- /components/llm_service/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/llm_service/src/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/__init__.py -------------------------------------------------------------------------------- /components/llm_service/src/config/agent_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/agent_config.json -------------------------------------------------------------------------------- /components/llm_service/src/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/config.py -------------------------------------------------------------------------------- /components/llm_service/src/config/document_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/document_manifest.json -------------------------------------------------------------------------------- /components/llm_service/src/config/model_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/model_config.py -------------------------------------------------------------------------------- /components/llm_service/src/config/model_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/model_config_test.py -------------------------------------------------------------------------------- /components/llm_service/src/config/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/models.json -------------------------------------------------------------------------------- /components/llm_service/src/config/onedrive_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/onedrive_config.py -------------------------------------------------------------------------------- /components/llm_service/src/config/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/utils.py -------------------------------------------------------------------------------- /components/llm_service/src/config/vector_store_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/config/vector_store_config.py -------------------------------------------------------------------------------- /components/llm_service/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/main.py -------------------------------------------------------------------------------- /components/llm_service/src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/metrics.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/llm_service/src/routes/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/agent.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/agent_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/agent_plan.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/agent_plan_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/agent_plan_test.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/agent_test.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/chat.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/chat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/chat_test.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/llm.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/llm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/llm_test.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/query.py -------------------------------------------------------------------------------- /components/llm_service/src/routes/query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/routes/query_test.py -------------------------------------------------------------------------------- /components/llm_service/src/run_batch_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/run_batch_job.py -------------------------------------------------------------------------------- /components/llm_service/src/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/llm_service/src/schemas/agent_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/schemas/agent_schema.py -------------------------------------------------------------------------------- /components/llm_service/src/schemas/error_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/schemas/error_schema.py -------------------------------------------------------------------------------- /components/llm_service/src/schemas/llm_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/schemas/llm_schema.py -------------------------------------------------------------------------------- /components/llm_service/src/schemas/schema_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/schemas/schema_examples.py -------------------------------------------------------------------------------- /components/llm_service/src/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/llm_service/src/services/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/agents/__init__.py -------------------------------------------------------------------------------- /components/llm_service/src/services/agents/agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/agents/agent_tools.py -------------------------------------------------------------------------------- /components/llm_service/src/services/agents/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/agents/agents.py -------------------------------------------------------------------------------- /components/llm_service/src/services/agents/db_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/agents/db_agent.py -------------------------------------------------------------------------------- /components/llm_service/src/services/agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/agents/utils.py -------------------------------------------------------------------------------- /components/llm_service/src/services/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/embeddings.py -------------------------------------------------------------------------------- /components/llm_service/src/services/embeddings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/embeddings_test.py -------------------------------------------------------------------------------- /components/llm_service/src/services/langchain_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/langchain_service.py -------------------------------------------------------------------------------- /components/llm_service/src/services/llm_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/llm_generate.py -------------------------------------------------------------------------------- /components/llm_service/src/services/llm_generate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/llm_generate_test.py -------------------------------------------------------------------------------- /components/llm_service/src/services/query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/query/__init__.py -------------------------------------------------------------------------------- /components/llm_service/src/services/query/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/query/data_source.py -------------------------------------------------------------------------------- /components/llm_service/src/services/query/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/services/query/vector_store.py -------------------------------------------------------------------------------- /components/llm_service/src/testing/llm_generate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/testing/llm_generate.json -------------------------------------------------------------------------------- /components/llm_service/src/testing/mg_llama2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/testing/mg_llama2.py -------------------------------------------------------------------------------- /components/llm_service/src/testing/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/testing/response.json -------------------------------------------------------------------------------- /components/llm_service/src/testing/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/testing/test_config.py -------------------------------------------------------------------------------- /components/llm_service/src/testing/truss_llama2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/testing/truss_llama2.py -------------------------------------------------------------------------------- /components/llm_service/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/llm_service/src/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/utils/errors.py -------------------------------------------------------------------------------- /components/llm_service/src/utils/file_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/utils/file_helper.py -------------------------------------------------------------------------------- /components/llm_service/src/utils/file_helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/utils/file_helper_test.py -------------------------------------------------------------------------------- /components/llm_service/src/utils/gcs_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/utils/gcs_helper.py -------------------------------------------------------------------------------- /components/llm_service/src/utils/html_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/utils/html_helper.py -------------------------------------------------------------------------------- /components/llm_service/src/utils/text_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/llm_service/src/utils/text_helper.py -------------------------------------------------------------------------------- /components/redis/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/redis/skaffold.yaml -------------------------------------------------------------------------------- /components/rules_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/Dockerfile -------------------------------------------------------------------------------- /components/rules_engine/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/rules_engine/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/kustomize/base/kustomization.yaml -------------------------------------------------------------------------------- /components/rules_engine/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/rules_engine/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/rules_engine/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/rules_engine/kustomize/hpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/kustomize/hpa/kustomization.yaml -------------------------------------------------------------------------------- /components/rules_engine/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/requirements-test.txt -------------------------------------------------------------------------------- /components/rules_engine/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/requirements.txt -------------------------------------------------------------------------------- /components/rules_engine/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/skaffold.yaml -------------------------------------------------------------------------------- /components/rules_engine/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/config.py -------------------------------------------------------------------------------- /components/rules_engine/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/main.py -------------------------------------------------------------------------------- /components/rules_engine/src/models/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/models/rule.py -------------------------------------------------------------------------------- /components/rules_engine/src/models/rule_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/models/rule_test.py -------------------------------------------------------------------------------- /components/rules_engine/src/models/ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/models/ruleset.py -------------------------------------------------------------------------------- /components/rules_engine/src/models/ruleset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/models/ruleset_test.py -------------------------------------------------------------------------------- /components/rules_engine/src/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/rules_engine/src/routes/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/routes/rules.py -------------------------------------------------------------------------------- /components/rules_engine/src/routes/rulesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/routes/rulesets.py -------------------------------------------------------------------------------- /components/rules_engine/src/rules_runners/base_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/rules_runners/base_runner.py -------------------------------------------------------------------------------- /components/rules_engine/src/rules_runners/gorules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/rules_runners/gorules.py -------------------------------------------------------------------------------- /components/rules_engine/src/rules_runners/gorules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/rules_runners/gorules_test.py -------------------------------------------------------------------------------- /components/rules_engine/src/schemas/evaluation_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/schemas/evaluation_result.py -------------------------------------------------------------------------------- /components/rules_engine/src/schemas/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/schemas/rule.py -------------------------------------------------------------------------------- /components/rules_engine/src/schemas/ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/rules_engine/src/schemas/ruleset.py -------------------------------------------------------------------------------- /components/rules_engine/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/tools_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/Dockerfile -------------------------------------------------------------------------------- /components/tools_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/README.md -------------------------------------------------------------------------------- /components/tools_service/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/tools_service/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/tools_service/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/tools_service/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/tools_service/kustomize/hpa/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/kustomize/hpa/kustomization.yaml -------------------------------------------------------------------------------- /components/tools_service/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/requirements-test.txt -------------------------------------------------------------------------------- /components/tools_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/requirements.txt -------------------------------------------------------------------------------- /components/tools_service/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/skaffold.yaml -------------------------------------------------------------------------------- /components/tools_service/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/tools_service/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/config.py -------------------------------------------------------------------------------- /components/tools_service/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/main.py -------------------------------------------------------------------------------- /components/tools_service/src/routes/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/routes/workspace.py -------------------------------------------------------------------------------- /components/tools_service/src/schemas/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/schemas/email.py -------------------------------------------------------------------------------- /components/tools_service/src/schemas/sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/schemas/sheets.py -------------------------------------------------------------------------------- /components/tools_service/src/services/database_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/services/database_service.py -------------------------------------------------------------------------------- /components/tools_service/src/services/email_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/services/email_composer.py -------------------------------------------------------------------------------- /components/tools_service/src/services/gmail_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/services/gmail_service.py -------------------------------------------------------------------------------- /components/tools_service/src/services/sheets_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/services/sheets_service.py -------------------------------------------------------------------------------- /components/tools_service/src/utils/google_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/tools_service/src/utils/google_credential.py -------------------------------------------------------------------------------- /components/user_management/.dockerignore: -------------------------------------------------------------------------------- 1 | kustomize 2 | skaffold.yaml -------------------------------------------------------------------------------- /components/user_management/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/Dockerfile -------------------------------------------------------------------------------- /components/user_management/kustomize/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/kustomize/base/deployment.yaml -------------------------------------------------------------------------------- /components/user_management/kustomize/base/properties.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/kustomize/base/properties.env -------------------------------------------------------------------------------- /components/user_management/kustomize/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/kustomize/base/service.yaml -------------------------------------------------------------------------------- /components/user_management/kustomize/hpa/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/kustomize/hpa/hpa.yaml -------------------------------------------------------------------------------- /components/user_management/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/requirements-test.txt -------------------------------------------------------------------------------- /components/user_management/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/requirements.txt -------------------------------------------------------------------------------- /components/user_management/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/skaffold.yaml -------------------------------------------------------------------------------- /components/user_management/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/user_management/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/config.py -------------------------------------------------------------------------------- /components/user_management/src/data/profile_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/data/profile_fields.json -------------------------------------------------------------------------------- /components/user_management/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/main.py -------------------------------------------------------------------------------- /components/user_management/src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/metrics.py -------------------------------------------------------------------------------- /components/user_management/src/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/user_management/src/routes/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/action.py -------------------------------------------------------------------------------- /components/user_management/src/routes/action_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/action_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/application.py -------------------------------------------------------------------------------- /components/user_management/src/routes/application_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/application_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/module.py -------------------------------------------------------------------------------- /components/user_management/src/routes/module_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/module_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/permission.py -------------------------------------------------------------------------------- /components/user_management/src/routes/permission_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/permission_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/session.py -------------------------------------------------------------------------------- /components/user_management/src/routes/session_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/session_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/staff.py -------------------------------------------------------------------------------- /components/user_management/src/routes/staff_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/staff_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/user.py -------------------------------------------------------------------------------- /components/user_management/src/routes/user_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/user_event.py -------------------------------------------------------------------------------- /components/user_management/src/routes/user_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/user_group.py -------------------------------------------------------------------------------- /components/user_management/src/routes/user_group_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/user_group_test.py -------------------------------------------------------------------------------- /components/user_management/src/routes/user_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/routes/user_test.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/action_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/action_schema.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/error_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/error_schema.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/module_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/module_schema.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/schema_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/schema_examples.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/session_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/session_schema.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/staff_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/staff_schema.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/user_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/user_event.py -------------------------------------------------------------------------------- /components/user_management/src/schemas/user_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/schemas/user_schema.py -------------------------------------------------------------------------------- /components/user_management/src/services/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/services/agent.py -------------------------------------------------------------------------------- /components/user_management/src/services/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/services/helper.py -------------------------------------------------------------------------------- /components/user_management/src/services/json_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/services/json_import.py -------------------------------------------------------------------------------- /components/user_management/src/services/learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/services/learner.py -------------------------------------------------------------------------------- /components/user_management/src/services/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/services/permissions.py -------------------------------------------------------------------------------- /components/user_management/src/services/staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/services/staff.py -------------------------------------------------------------------------------- /components/user_management/src/testing/staffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/testing/staffs.json -------------------------------------------------------------------------------- /components/user_management/src/testing/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/testing/test_config.py -------------------------------------------------------------------------------- /components/user_management/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/user_management/src/utils/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/user_management/src/utils/setup.sh -------------------------------------------------------------------------------- /components/webscraper/.gitignore: -------------------------------------------------------------------------------- 1 | webscraper 2 | .cloudstorage 3 | 4 | -------------------------------------------------------------------------------- /components/webscraper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/Dockerfile -------------------------------------------------------------------------------- /components/webscraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/README.md -------------------------------------------------------------------------------- /components/webscraper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/go.mod -------------------------------------------------------------------------------- /components/webscraper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/go.sum -------------------------------------------------------------------------------- /components/webscraper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/main.go -------------------------------------------------------------------------------- /components/webscraper/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/main_test.go -------------------------------------------------------------------------------- /components/webscraper/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/run_tests.sh -------------------------------------------------------------------------------- /components/webscraper/scrape_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/scrape_url.py -------------------------------------------------------------------------------- /components/webscraper/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/skaffold.yaml -------------------------------------------------------------------------------- /components/webscraper/webscraper_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/components/webscraper/webscraper_api.go -------------------------------------------------------------------------------- /docs/AUTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/AUTH.md -------------------------------------------------------------------------------- /docs/CICD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/CICD.md -------------------------------------------------------------------------------- /docs/CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/CONFIG.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/assets/add_user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/assets/add_user.jpg -------------------------------------------------------------------------------- /docs/assets/firebase_add_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/assets/firebase_add_identity.png -------------------------------------------------------------------------------- /docs/assets/firebase_google_provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/assets/firebase_google_provider.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/docs/index.md -------------------------------------------------------------------------------- /experimental/llm_truss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/README.md -------------------------------------------------------------------------------- /experimental/llm_truss/llama2-7b-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/llama2-7b-sample/README.md -------------------------------------------------------------------------------- /experimental/llm_truss/llama2-7b-sample/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/llama2-7b-sample/config.yaml -------------------------------------------------------------------------------- /experimental/llm_truss/llama2-7b-sample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/llama2-7b-sample/main.py -------------------------------------------------------------------------------- /experimental/llm_truss/llama2-7b-sample/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/llama2-7b-sample/model/model.py -------------------------------------------------------------------------------- /experimental/llm_truss/llama2-7b-sample/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/llama2-7b-sample/requirements.txt -------------------------------------------------------------------------------- /experimental/llm_truss/llama2-7b-sample/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/llama2-7b-sample/skaffold.yaml -------------------------------------------------------------------------------- /experimental/llm_truss/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/main.py -------------------------------------------------------------------------------- /experimental/llm_truss/send_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/llm_truss/send_prompt.sh -------------------------------------------------------------------------------- /experimental/vllm_gemma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/vllm_gemma/README.md -------------------------------------------------------------------------------- /experimental/vllm_gemma/vllm-gemma-2b-it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/experimental/vllm_gemma/vllm-gemma-2b-it.yaml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/firebase.json -------------------------------------------------------------------------------- /ingress/kustomize/genie-llama2/frontend_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie-llama2/frontend_config.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie-llama2/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie-llama2/ingress.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie-llama2/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie-llama2/kustomization.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie-llama2/managed_cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie-llama2/managed_cert.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie/frontend_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie/frontend_config.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie/ingress.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie/kustomization.yaml -------------------------------------------------------------------------------- /ingress/kustomize/genie/managed_cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/genie/managed_cert.yaml -------------------------------------------------------------------------------- /ingress/kustomize/gke/frontend_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/gke/frontend_config.yaml -------------------------------------------------------------------------------- /ingress/kustomize/gke/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/gke/ingress.yaml -------------------------------------------------------------------------------- /ingress/kustomize/gke/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/gke/kustomization.yaml -------------------------------------------------------------------------------- /ingress/kustomize/gke/managed_cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/kustomize/gke/managed_cert.yaml -------------------------------------------------------------------------------- /ingress/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/ingress/skaffold.yaml -------------------------------------------------------------------------------- /sb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/sb.yaml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup/setup_ksa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/setup/setup_ksa.sh -------------------------------------------------------------------------------- /setup/setup_model_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/setup/setup_model_env.sh -------------------------------------------------------------------------------- /setup/setup_pgvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/setup/setup_pgvector.py -------------------------------------------------------------------------------- /skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/skaffold.yaml -------------------------------------------------------------------------------- /terraform/modules/cloudbuild/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/cloudbuild/main.tf -------------------------------------------------------------------------------- /terraform/modules/cloudbuild/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/cloudbuild/variables.tf -------------------------------------------------------------------------------- /terraform/modules/cloudrun/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/cloudrun/main.tf -------------------------------------------------------------------------------- /terraform/modules/cloudrun/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/cloudrun/variables.tf -------------------------------------------------------------------------------- /terraform/modules/compute_backend/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/compute_backend/main.tf -------------------------------------------------------------------------------- /terraform/modules/compute_backend/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/compute_backend/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/compute_backend/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/compute_backend/providers.tf -------------------------------------------------------------------------------- /terraform/modules/compute_backend/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/compute_backend/variables.tf -------------------------------------------------------------------------------- /terraform/modules/firebase/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/firebase/main.tf -------------------------------------------------------------------------------- /terraform/modules/firebase/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/firebase/variables.tf -------------------------------------------------------------------------------- /terraform/modules/gke/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/gke/main.tf -------------------------------------------------------------------------------- /terraform/modules/gke/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/gke/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/gke/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/gke/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ingress_gce/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/ingress_gce/main.tf -------------------------------------------------------------------------------- /terraform/modules/ingress_gce/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/ingress_gce/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ingress_gce/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/ingress_gce/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ingress_nginx/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/ingress_nginx/main.tf -------------------------------------------------------------------------------- /terraform/modules/ingress_nginx/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/ingress_nginx/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ingress_nginx/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/ingress_nginx/variables.tf -------------------------------------------------------------------------------- /terraform/modules/project_services/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/project_services/main.tf -------------------------------------------------------------------------------- /terraform/modules/project_services/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/project_services/variables.tf -------------------------------------------------------------------------------- /terraform/modules/service_account/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/service_account/main.tf -------------------------------------------------------------------------------- /terraform/modules/service_account/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/service_account/variables.tf -------------------------------------------------------------------------------- /terraform/modules/terraform_cicd/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/terraform_cicd/main.tf -------------------------------------------------------------------------------- /terraform/modules/terraform_cicd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/terraform_cicd/variables.tf -------------------------------------------------------------------------------- /terraform/modules/vpc_network/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/vpc_network/main.tf -------------------------------------------------------------------------------- /terraform/modules/vpc_network/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/modules/vpc_network/variables.tf -------------------------------------------------------------------------------- /terraform/stages/0-jumphost/bastion_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/0-jumphost/bastion_startup.sh -------------------------------------------------------------------------------- /terraform/stages/0-jumphost/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/0-jumphost/main.tf -------------------------------------------------------------------------------- /terraform/stages/0-jumphost/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/0-jumphost/terraform.tfvars -------------------------------------------------------------------------------- /terraform/stages/0-jumphost/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/0-jumphost/variables.tf -------------------------------------------------------------------------------- /terraform/stages/1-bootstrap/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/1-bootstrap/main.tf -------------------------------------------------------------------------------- /terraform/stages/1-bootstrap/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/1-bootstrap/output.tf -------------------------------------------------------------------------------- /terraform/stages/1-bootstrap/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/1-bootstrap/terraform.tfvars -------------------------------------------------------------------------------- /terraform/stages/1-bootstrap/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/1-bootstrap/variables.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/artifact_registry.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/artifact_registry.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/backend.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/firestore_setup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/firestore_setup.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/iam.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/identity_platform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/identity_platform.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/main.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/outputs.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/providers.tf -------------------------------------------------------------------------------- /terraform/stages/2-foundation/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/terraform.tfvars -------------------------------------------------------------------------------- /terraform/stages/2-foundation/tf_output.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/tf_output.tfvars -------------------------------------------------------------------------------- /terraform/stages/2-foundation/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/2-foundation/variables.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/backend.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/iam.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/main.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/outputs.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/providers.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/terraform.tfvars -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/tf_output.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/tf_output.tfvars -------------------------------------------------------------------------------- /terraform/stages/3-gke-ingress/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke-ingress/variables.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke/backend.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke/iam.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke/main.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke/providers.tf -------------------------------------------------------------------------------- /terraform/stages/3-gke/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke/terraform.tfvars -------------------------------------------------------------------------------- /terraform/stages/3-gke/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-gke/variables.tf -------------------------------------------------------------------------------- /terraform/stages/3-httplb-cloudrun/model_service_neg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/3-httplb-cloudrun/model_service_neg.tf -------------------------------------------------------------------------------- /terraform/stages/4-llm/dummy_collections_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/4-llm/dummy_collections_create.py -------------------------------------------------------------------------------- /terraform/stages/4-llm/dummy_collections_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/4-llm/dummy_collections_delete.py -------------------------------------------------------------------------------- /terraform/stages/4-llm/genai-sample-doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/4-llm/genai-sample-doc.pdf -------------------------------------------------------------------------------- /terraform/stages/4-llm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/4-llm/main.tf -------------------------------------------------------------------------------- /terraform/stages/4-llm/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/4-llm/terraform.tfvars -------------------------------------------------------------------------------- /terraform/stages/4-llm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/terraform/stages/4-llm/variables.tf -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/e2e_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/e2e/e2e_utils.py -------------------------------------------------------------------------------- /tests/e2e/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/e2e/requirements.txt -------------------------------------------------------------------------------- /tests/e2e/utils/database_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/e2e/utils/database_cleanup.py -------------------------------------------------------------------------------- /tests/e2e/utils/database_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/e2e/utils/database_setup.py -------------------------------------------------------------------------------- /tests/e2e/utils/e2e_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/e2e/utils/e2e_config.json -------------------------------------------------------------------------------- /tests/e2e/utils/port_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/e2e/utils/port_forward.py -------------------------------------------------------------------------------- /tests/load_testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/load_testing/README.md -------------------------------------------------------------------------------- /tests/load_testing/create_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/load_testing/create_users.py -------------------------------------------------------------------------------- /tests/load_testing/example_config.py: -------------------------------------------------------------------------------- 1 | """Configuration values to be used during load testing""" 2 | BASE_URL = "https://mywebsite.com" 3 | -------------------------------------------------------------------------------- /tests/load_testing/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tests/load_testing/locustfile.py -------------------------------------------------------------------------------- /tests/load_testing/requirements.txt: -------------------------------------------------------------------------------- 1 | locust 2 | requests 3 | firebase-admin -------------------------------------------------------------------------------- /tools/add_license_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tools/add_license_header.sh -------------------------------------------------------------------------------- /tools/auth_with_sa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tools/auth_with_sa.sh -------------------------------------------------------------------------------- /tools/build_query_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/tools/build_query_engine.py -------------------------------------------------------------------------------- /utils/alloy_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/alloy_db.sh -------------------------------------------------------------------------------- /utils/cloudsql_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/cloudsql_db.sh -------------------------------------------------------------------------------- /utils/disable_org_policies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/disable_org_policies.sh -------------------------------------------------------------------------------- /utils/init_env_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/init_env_vars.sh -------------------------------------------------------------------------------- /utils/install_firebase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/install_firebase.sh -------------------------------------------------------------------------------- /utils/run_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/run_unit_tests.sh -------------------------------------------------------------------------------- /utils/setup_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/setup_venv.sh -------------------------------------------------------------------------------- /utils/upgrade_node_pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/core-solution-services/HEAD/utils/upgrade_node_pool.sh --------------------------------------------------------------------------------