├── .DS_Store ├── .env.example ├── .github ├── pull_request_template.md └── workflows │ ├── lint-backend.yml │ ├── lint-frontend.yml │ ├── test-backend.yml │ └── type-check-backend.yml ├── .gitignore ├── .idea ├── .gitignore ├── InferGPT.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CONTRIBUTING.md ├── LICENCE.md ├── README.md ├── assets ├── ArchitectureFlowOverview.png ├── OntologyExample.png ├── README.md ├── SequenceDiagram.png └── sum-my-subscriptions │ ├── contents.md │ ├── happy_flows.md │ ├── happy_flows_basic_question_top_level_concepts.md │ ├── happy_flows_sum_my_subs_python_modules.md │ ├── happy_flows_sum_my_subs_top_level_concepts.md │ ├── overview.md │ └── unhappy_flows.md ├── backend ├── Dockerfile ├── README.md ├── conftest.py ├── requirements.txt ├── ruff.toml ├── src │ ├── agents │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── agent.py │ │ ├── agent_types.py │ │ ├── answer_agent.py │ │ ├── chart_generator_agent.py │ │ ├── datastore_agent.py │ │ ├── file_agent.py │ │ ├── intent_agent.py │ │ ├── maths_agent.py │ │ ├── tool.py │ │ ├── validator_agent.py │ │ └── web_agent.py │ ├── api │ │ ├── __init__.py │ │ ├── app.py │ │ └── config.ini │ ├── director.py │ ├── llm │ │ ├── __init__.py │ │ ├── count_calls.py │ │ ├── factory.py │ │ ├── llm.py │ │ ├── mistral.py │ │ ├── mock.py │ │ ├── openai.py │ │ └── openai_client.py │ ├── main.py │ ├── prompts │ │ ├── __init__.py │ │ ├── prompting.py │ │ └── templates │ │ │ ├── agent-selection-format.j2 │ │ │ ├── answer-user-ques.j2 │ │ │ ├── best-next-step.j2 │ │ │ ├── best-tool.j2 │ │ │ ├── create-answer.j2 │ │ │ ├── create-search-term.j2 │ │ │ ├── details-to-create-cypher-query.j2 │ │ │ ├── details-to-generate-chart-code.j2 │ │ │ ├── director.j2 │ │ │ ├── find-info.j2 │ │ │ ├── generate-chart-code.j2 │ │ │ ├── generate-cypher-query.j2 │ │ │ ├── intent-format.j2 │ │ │ ├── intent.j2 │ │ │ ├── math-solver.j2 │ │ │ ├── neo4j-graph-why.j2 │ │ │ ├── neo4j-node-property.j2 │ │ │ ├── neo4j-nodes-understanding.j2 │ │ │ ├── neo4j-property-intent-prompt.j2 │ │ │ ├── neo4j-relationship-understanding.j2 │ │ │ ├── node-property-cypher-query.j2 │ │ │ ├── pdf-summariser.j2 │ │ │ ├── relationship-property-cypher-query.j2 │ │ │ ├── relationships-query.j2 │ │ │ ├── summariser.j2 │ │ │ ├── tool-selection-format.j2 │ │ │ └── validator.j2 │ ├── router.py │ ├── supervisors │ │ ├── __init__.py │ │ └── supervisor.py │ ├── utils │ │ ├── __init__.py │ │ ├── annual_cypher_import.py │ │ ├── config.py │ │ ├── graph_db_utils.py │ │ ├── json.py │ │ ├── log_publisher.py │ │ ├── scratchpad.py │ │ ├── semantic_layer_builder.py │ │ └── web_utils.py │ └── websockets │ │ ├── __init__.py │ │ ├── confirmations_manager.py │ │ ├── connection_manager.py │ │ ├── message_handlers.py │ │ ├── types.py │ │ └── user_confirmer.py └── tests │ ├── __init__.py │ ├── agents │ ├── __init__.py │ ├── adapters_test.py │ ├── agent_test.py │ ├── chart_generator_agent_test.py │ ├── datastore_agent_test.py │ ├── file_agent_test.py │ ├── tool_test.py │ └── web_agent_test.py │ ├── api │ ├── app_test.py │ └── log_publisher_test.py │ ├── llm │ ├── __init__.py │ ├── count_calls_test.py │ ├── factory_test.py │ ├── llm_test.py │ ├── mistral_test.py │ └── openai_test.py │ ├── prompts │ ├── __init__.py │ └── prompting_test.py │ ├── router_test.py │ ├── supervisors │ ├── __init__.py │ └── supervisor_test.py │ ├── utils │ ├── __init__.py │ ├── graph_db_utils_test.py │ ├── json_test.py │ └── scratchpad_test.py │ └── websockets │ ├── confirmations_manager_test.py │ ├── connection_manager_test.py │ ├── message_handlers_test.py │ └── user_confirmer_test.py ├── compose.yml ├── data ├── Dockerfile └── README.md ├── financialhealthcheckScottLogic ├── .DS_Store ├── README.md ├── financial-bot │ ├── .DS_Store │ ├── backend │ │ ├── README.md │ │ ├── app.py │ │ ├── data │ │ │ ├── models.py │ │ │ └── payload.py │ │ ├── example.env │ │ ├── graph.py │ │ ├── llm │ │ │ ├── characters.py │ │ │ ├── gpt3_model.py │ │ │ ├── gpt_chat_model.py │ │ │ └── llm.py │ │ ├── requirements.txt │ │ └── utilities │ │ │ ├── defaults.py │ │ │ ├── nlp_helper.py │ │ │ ├── nlp_prompts.py │ │ │ ├── sanitiser.py │ │ │ └── session_manager.py │ ├── docs │ │ ├── .DS_Store │ │ ├── bot.md │ │ ├── fiona.md │ │ ├── gpt3_prompts │ │ │ └── financial_advisor_prompts.md │ │ ├── intents_entities_extraction.md │ │ ├── knowledge_graph │ │ │ ├── brain_ontology.json │ │ │ ├── brain_ontology.png │ │ │ ├── graph_db_thoughts.md │ │ │ ├── graph_dbs.drawio.png │ │ │ ├── graph_thoughts_diagram.md │ │ │ └── records.json │ │ ├── long_conversations_support.md │ │ └── retailbanking.md │ ├── frontend │ │ ├── chat-widget-loader │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── loader.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── chat-widget │ │ │ ├── README.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── manifest.json │ │ │ │ └── robots.txt │ │ │ ├── src │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── App.test.js │ │ │ │ ├── Widget.jsx │ │ │ │ ├── WidgetContainer.jsx │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── reportWebVitals.js │ │ │ │ └── setupTests.js │ │ │ └── yarn.lock │ │ └── start.bat │ └── utils │ │ └── conversation.html ├── licence.txt └── samples │ ├── azure │ ├── 2023v1Project(Chatbot).json │ └── README.md │ ├── botui │ └── react-quickstart-main │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ └── src │ │ ├── javascript │ │ ├── index.html │ │ └── index.js │ │ └── typescript │ │ ├── index.html │ │ └── index.tsx │ ├── chatscope │ ├── example-chat-widget │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── Widget.jsx │ │ │ ├── WidgetContainer.jsx │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── logo.svg │ │ │ ├── reportWebVitals.js │ │ │ └── setupTests.js │ │ └── yarn.lock │ └── example-widget-loader │ │ ├── README.md │ │ ├── index.html │ │ ├── loader.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── yarn.lock │ └── graphdb │ ├── assessment_profile.csv │ ├── assessments.csv │ ├── chatBot.postman_collection.json │ ├── clear_graph.cypher │ ├── conversation_assessment.csv │ ├── conversation_conversation.csv │ ├── conversation_goal.csv │ ├── conversation_value.csv │ ├── conversations.csv │ ├── create_graph.cypher │ ├── goals.csv │ ├── goals_profiles.csv │ ├── knowledge.csv │ ├── profiles.csv │ ├── profiles_knowledge.csv │ ├── questions.csv │ ├── questions_knowledge.csv │ ├── questions_questions.csv │ ├── readme.md │ ├── scripts.cypher │ ├── usecase_create_graph.cypher │ ├── usecase_knowledge.csv │ ├── usecase_profiles_knowledge.csv │ ├── usecase_questions.csv │ ├── usecase_questions_knowledge.csv │ ├── user_assessment.csv │ ├── user_conversation.csv │ ├── user_value.csv │ ├── users.csv │ ├── value_knowledge.csv │ ├── value_question.csv │ └── values.csv ├── frontend ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .idea │ ├── .gitignore │ ├── codeStyles │ │ └── Project.xml │ ├── frontend.iml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ └── vcs.xml ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── app.module.css │ ├── app.tsx │ ├── components │ │ ├── chat.module.css │ │ ├── chat.tsx │ │ ├── confirm-modal.module.css │ │ ├── confirm-modal.tsx │ │ ├── connection-status.module.css │ │ ├── connection-status.tsx │ │ ├── input.module.css │ │ ├── input.tsx │ │ ├── message.module.css │ │ ├── message.tsx │ │ ├── waiting.module.css │ │ └── waiting.tsx │ ├── declarations.d.ts │ ├── icons │ │ ├── cpu.svg │ │ ├── map-arrow-right.svg │ │ └── user.svg │ ├── index.tsx │ ├── server.ts │ ├── session │ │ ├── websocket-context.ts │ │ └── websocket-provider.tsx │ ├── styles.css │ └── useMessages.ts ├── tsconfig.json └── webpack.config.js ├── pyrightconfig.json └── test └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.env.example -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | 4 | ## Changelog 5 | - 6 | -------------------------------------------------------------------------------- /.github/workflows/lint-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.github/workflows/lint-backend.yml -------------------------------------------------------------------------------- /.github/workflows/lint-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.github/workflows/lint-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/test-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.github/workflows/test-backend.yml -------------------------------------------------------------------------------- /.github/workflows/type-check-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.github/workflows/type-check-backend.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/InferGPT.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/InferGPT.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/README.md -------------------------------------------------------------------------------- /assets/ArchitectureFlowOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/ArchitectureFlowOverview.png -------------------------------------------------------------------------------- /assets/OntologyExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/OntologyExample.png -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/SequenceDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/SequenceDiagram.png -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/contents.md -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/happy_flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/happy_flows.md -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/happy_flows_basic_question_top_level_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/happy_flows_basic_question_top_level_concepts.md -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/happy_flows_sum_my_subs_python_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/happy_flows_sum_my_subs_python_modules.md -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/happy_flows_sum_my_subs_top_level_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/happy_flows_sum_my_subs_top_level_concepts.md -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/overview.md -------------------------------------------------------------------------------- /assets/sum-my-subscriptions/unhappy_flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/assets/sum-my-subscriptions/unhappy_flows.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/conftest.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/ruff.toml -------------------------------------------------------------------------------- /backend/src/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/__init__.py -------------------------------------------------------------------------------- /backend/src/agents/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/adapters.py -------------------------------------------------------------------------------- /backend/src/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/agent.py -------------------------------------------------------------------------------- /backend/src/agents/agent_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/agent_types.py -------------------------------------------------------------------------------- /backend/src/agents/answer_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/answer_agent.py -------------------------------------------------------------------------------- /backend/src/agents/chart_generator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/chart_generator_agent.py -------------------------------------------------------------------------------- /backend/src/agents/datastore_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/datastore_agent.py -------------------------------------------------------------------------------- /backend/src/agents/file_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/file_agent.py -------------------------------------------------------------------------------- /backend/src/agents/intent_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/intent_agent.py -------------------------------------------------------------------------------- /backend/src/agents/maths_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/maths_agent.py -------------------------------------------------------------------------------- /backend/src/agents/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/tool.py -------------------------------------------------------------------------------- /backend/src/agents/validator_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/validator_agent.py -------------------------------------------------------------------------------- /backend/src/agents/web_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/agents/web_agent.py -------------------------------------------------------------------------------- /backend/src/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/api/__init__.py -------------------------------------------------------------------------------- /backend/src/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/api/app.py -------------------------------------------------------------------------------- /backend/src/api/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/api/config.ini -------------------------------------------------------------------------------- /backend/src/director.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/director.py -------------------------------------------------------------------------------- /backend/src/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/__init__.py -------------------------------------------------------------------------------- /backend/src/llm/count_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/count_calls.py -------------------------------------------------------------------------------- /backend/src/llm/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/factory.py -------------------------------------------------------------------------------- /backend/src/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/llm.py -------------------------------------------------------------------------------- /backend/src/llm/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/mistral.py -------------------------------------------------------------------------------- /backend/src/llm/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/mock.py -------------------------------------------------------------------------------- /backend/src/llm/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/openai.py -------------------------------------------------------------------------------- /backend/src/llm/openai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/llm/openai_client.py -------------------------------------------------------------------------------- /backend/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/main.py -------------------------------------------------------------------------------- /backend/src/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/__init__.py -------------------------------------------------------------------------------- /backend/src/prompts/prompting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/prompting.py -------------------------------------------------------------------------------- /backend/src/prompts/templates/agent-selection-format.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/agent-selection-format.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/answer-user-ques.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/answer-user-ques.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/best-next-step.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/best-next-step.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/best-tool.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/best-tool.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/create-answer.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/create-answer.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/create-search-term.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/create-search-term.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/details-to-create-cypher-query.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/details-to-create-cypher-query.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/details-to-generate-chart-code.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/details-to-generate-chart-code.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/director.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/director.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/find-info.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/find-info.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/generate-chart-code.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/generate-chart-code.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/generate-cypher-query.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/generate-cypher-query.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/intent-format.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/intent-format.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/intent.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/intent.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/math-solver.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/math-solver.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/neo4j-graph-why.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/neo4j-graph-why.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/neo4j-node-property.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/neo4j-node-property.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/neo4j-nodes-understanding.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/neo4j-nodes-understanding.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/neo4j-property-intent-prompt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/neo4j-property-intent-prompt.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/neo4j-relationship-understanding.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/neo4j-relationship-understanding.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/node-property-cypher-query.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/node-property-cypher-query.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/pdf-summariser.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/pdf-summariser.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/relationship-property-cypher-query.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/relationship-property-cypher-query.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/relationships-query.j2: -------------------------------------------------------------------------------- 1 | call db.schema.visualization 2 | -------------------------------------------------------------------------------- /backend/src/prompts/templates/summariser.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/summariser.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/tool-selection-format.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/tool-selection-format.j2 -------------------------------------------------------------------------------- /backend/src/prompts/templates/validator.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/prompts/templates/validator.j2 -------------------------------------------------------------------------------- /backend/src/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/router.py -------------------------------------------------------------------------------- /backend/src/supervisors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/supervisors/__init__.py -------------------------------------------------------------------------------- /backend/src/supervisors/supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/supervisors/supervisor.py -------------------------------------------------------------------------------- /backend/src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/__init__.py -------------------------------------------------------------------------------- /backend/src/utils/annual_cypher_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/annual_cypher_import.py -------------------------------------------------------------------------------- /backend/src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/config.py -------------------------------------------------------------------------------- /backend/src/utils/graph_db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/graph_db_utils.py -------------------------------------------------------------------------------- /backend/src/utils/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/json.py -------------------------------------------------------------------------------- /backend/src/utils/log_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/log_publisher.py -------------------------------------------------------------------------------- /backend/src/utils/scratchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/scratchpad.py -------------------------------------------------------------------------------- /backend/src/utils/semantic_layer_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/semantic_layer_builder.py -------------------------------------------------------------------------------- /backend/src/utils/web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/utils/web_utils.py -------------------------------------------------------------------------------- /backend/src/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/websockets/confirmations_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/websockets/confirmations_manager.py -------------------------------------------------------------------------------- /backend/src/websockets/connection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/websockets/connection_manager.py -------------------------------------------------------------------------------- /backend/src/websockets/message_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/websockets/message_handlers.py -------------------------------------------------------------------------------- /backend/src/websockets/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/websockets/types.py -------------------------------------------------------------------------------- /backend/src/websockets/user_confirmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/src/websockets/user_confirmer.py -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/__init__.py -------------------------------------------------------------------------------- /backend/tests/agents/adapters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/adapters_test.py -------------------------------------------------------------------------------- /backend/tests/agents/agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/agent_test.py -------------------------------------------------------------------------------- /backend/tests/agents/chart_generator_agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/chart_generator_agent_test.py -------------------------------------------------------------------------------- /backend/tests/agents/datastore_agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/datastore_agent_test.py -------------------------------------------------------------------------------- /backend/tests/agents/file_agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/file_agent_test.py -------------------------------------------------------------------------------- /backend/tests/agents/tool_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/tool_test.py -------------------------------------------------------------------------------- /backend/tests/agents/web_agent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/agents/web_agent_test.py -------------------------------------------------------------------------------- /backend/tests/api/app_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/api/app_test.py -------------------------------------------------------------------------------- /backend/tests/api/log_publisher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/api/log_publisher_test.py -------------------------------------------------------------------------------- /backend/tests/llm/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/tests/llm/count_calls_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/llm/count_calls_test.py -------------------------------------------------------------------------------- /backend/tests/llm/factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/llm/factory_test.py -------------------------------------------------------------------------------- /backend/tests/llm/llm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/llm/llm_test.py -------------------------------------------------------------------------------- /backend/tests/llm/mistral_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/llm/mistral_test.py -------------------------------------------------------------------------------- /backend/tests/llm/openai_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/llm/openai_test.py -------------------------------------------------------------------------------- /backend/tests/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/prompts/prompting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/prompts/prompting_test.py -------------------------------------------------------------------------------- /backend/tests/router_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/router_test.py -------------------------------------------------------------------------------- /backend/tests/supervisors/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/tests/supervisors/supervisor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/supervisors/supervisor_test.py -------------------------------------------------------------------------------- /backend/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/utils/graph_db_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/utils/graph_db_utils_test.py -------------------------------------------------------------------------------- /backend/tests/utils/json_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/utils/json_test.py -------------------------------------------------------------------------------- /backend/tests/utils/scratchpad_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/utils/scratchpad_test.py -------------------------------------------------------------------------------- /backend/tests/websockets/confirmations_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/websockets/confirmations_manager_test.py -------------------------------------------------------------------------------- /backend/tests/websockets/connection_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/websockets/connection_manager_test.py -------------------------------------------------------------------------------- /backend/tests/websockets/message_handlers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/websockets/message_handlers_test.py -------------------------------------------------------------------------------- /backend/tests/websockets/user_confirmer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/backend/tests/websockets/user_confirmer_test.py -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/compose.yml -------------------------------------------------------------------------------- /data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/data/Dockerfile -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/data/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/.DS_Store -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/.DS_Store -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/app.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/data/models.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/data/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/data/payload.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/example.env -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/graph.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/llm/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/llm/characters.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/llm/gpt3_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/llm/gpt3_model.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/llm/gpt_chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/llm/gpt_chat_model.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/llm/llm.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/requirements.txt -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/utilities/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/utilities/defaults.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/utilities/nlp_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/utilities/nlp_helper.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/utilities/nlp_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/utilities/nlp_prompts.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/utilities/sanitiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/utilities/sanitiser.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/backend/utilities/session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/backend/utilities/session_manager.py -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/.DS_Store -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/bot.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/fiona.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/fiona.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/gpt3_prompts/financial_advisor_prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/gpt3_prompts/financial_advisor_prompts.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/intents_entities_extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/intents_entities_extraction.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/brain_ontology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/brain_ontology.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/brain_ontology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/brain_ontology.png -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/graph_db_thoughts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/graph_db_thoughts.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/graph_dbs.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/graph_dbs.drawio.png -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/graph_thoughts_diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/graph_thoughts_diagram.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/knowledge_graph/records.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/long_conversations_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/long_conversations_support.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/docs/retailbanking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/docs/retailbanking.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/index.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/loader.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/package-lock.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/package.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget-loader/yarn.lock -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/package-lock.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/package.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/favicon.ico -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/index.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/manifest.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/public/robots.txt -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | position:relative; 3 | height:100%; 4 | } -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/App.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/App.test.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/Widget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/Widget.jsx -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/WidgetContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/WidgetContainer.jsx -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/index.css -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/index.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/reportWebVitals.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/src/setupTests.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/frontend/chat-widget/yarn.lock -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/frontend/start.bat: -------------------------------------------------------------------------------- 1 | cd ./chat-widget 2 | npm start -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/financial-bot/utils/conversation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/financial-bot/utils/conversation.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/licence.txt -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/azure/2023v1Project(Chatbot).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/azure/2023v1Project(Chatbot).json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/azure/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/package-lock.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/package.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/readme.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/javascript/index.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/javascript/index.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/typescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/typescript/index.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/typescript/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/botui/react-quickstart-main/src/typescript/index.tsx -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/package-lock.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/package.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/favicon.ico -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/index.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/logo192.png -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/logo512.png -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/manifest.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/public/robots.txt -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | position:relative; 3 | height:100%; 4 | } -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/App.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/App.test.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/Widget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/Widget.jsx -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/WidgetContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/WidgetContainer.jsx -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/index.css -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/index.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/logo.svg -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/reportWebVitals.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/src/setupTests.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-chat-widget/yarn.lock -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/README.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/index.html -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/loader.js -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/package-lock.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/package.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/chatscope/example-widget-loader/yarn.lock -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/assessment_profile.csv: -------------------------------------------------------------------------------- 1 | assessmentId,profileId 2 | 1,3 3 | 2,1 4 | 3,2 5 | 4,1 6 | -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/assessments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/assessments.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/chatBot.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/chatBot.postman_collection.json -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/clear_graph.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/clear_graph.cypher -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/conversation_assessment.csv: -------------------------------------------------------------------------------- 1 | conversationId,assessmentId 2 | 1,1 3 | 2,2 4 | 3,3 5 | 4,4 6 | -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/conversation_conversation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/conversation_conversation.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/conversation_goal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/conversation_goal.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/conversation_value.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/conversation_value.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/conversations.csv: -------------------------------------------------------------------------------- 1 | conversationId 2 | 1 3 | 2 4 | 3 5 | 4 6 | -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/create_graph.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/create_graph.cypher -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/goals.csv: -------------------------------------------------------------------------------- 1 | goalId,name 2 | 1,"financial health" 3 | 2,"investment" 4 | -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/goals_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/goals_profiles.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/profiles.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/profiles_knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/profiles_knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/questions.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/questions_knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/questions_knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/questions_questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/questions_questions.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/readme.md -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/scripts.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/scripts.cypher -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/usecase_create_graph.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/usecase_create_graph.cypher -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/usecase_knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/usecase_knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/usecase_profiles_knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/usecase_profiles_knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/usecase_questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/usecase_questions.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/usecase_questions_knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/usecase_questions_knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/user_assessment.csv: -------------------------------------------------------------------------------- 1 | userId,assessmentId 2 | 3,1 3 | 3,2 4 | 5,3 5 | 7,4 6 | -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/user_conversation.csv: -------------------------------------------------------------------------------- 1 | userId,conversationId 2 | 3,1 3 | 3,2 4 | 5,3 5 | 7,4 6 | -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/user_value.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/user_value.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/users.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/value_knowledge.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/value_knowledge.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/value_question.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/value_question.csv -------------------------------------------------------------------------------- /financialhealthcheckScottLogic/samples/graphdb/values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/financialhealthcheckScottLogic/samples/graphdb/values.csv -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .vscode/settings.json 4 | -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.idea/.gitignore -------------------------------------------------------------------------------- /frontend/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /frontend/.idea/frontend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.idea/frontend.iml -------------------------------------------------------------------------------- /frontend/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /frontend/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.idea/modules.xml -------------------------------------------------------------------------------- /frontend/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/.idea/vcs.xml -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/src/app.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/app.module.css -------------------------------------------------------------------------------- /frontend/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/app.tsx -------------------------------------------------------------------------------- /frontend/src/components/chat.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/chat.module.css -------------------------------------------------------------------------------- /frontend/src/components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/chat.tsx -------------------------------------------------------------------------------- /frontend/src/components/confirm-modal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/confirm-modal.module.css -------------------------------------------------------------------------------- /frontend/src/components/confirm-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/confirm-modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/connection-status.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/connection-status.module.css -------------------------------------------------------------------------------- /frontend/src/components/connection-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/connection-status.tsx -------------------------------------------------------------------------------- /frontend/src/components/input.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/input.module.css -------------------------------------------------------------------------------- /frontend/src/components/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/input.tsx -------------------------------------------------------------------------------- /frontend/src/components/message.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/message.module.css -------------------------------------------------------------------------------- /frontend/src/components/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/message.tsx -------------------------------------------------------------------------------- /frontend/src/components/waiting.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/waiting.module.css -------------------------------------------------------------------------------- /frontend/src/components/waiting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/components/waiting.tsx -------------------------------------------------------------------------------- /frontend/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/declarations.d.ts -------------------------------------------------------------------------------- /frontend/src/icons/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/icons/cpu.svg -------------------------------------------------------------------------------- /frontend/src/icons/map-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/icons/map-arrow-right.svg -------------------------------------------------------------------------------- /frontend/src/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/icons/user.svg -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/server.ts -------------------------------------------------------------------------------- /frontend/src/session/websocket-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/session/websocket-context.ts -------------------------------------------------------------------------------- /frontend/src/session/websocket-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/session/websocket-provider.tsx -------------------------------------------------------------------------------- /frontend/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/styles.css -------------------------------------------------------------------------------- /frontend/src/useMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/src/useMessages.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaitThatShouldntWork/Infer/HEAD/test/README.md --------------------------------------------------------------------------------