gitextract_1j3ii37c/ ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.js ├── .yarn/ │ └── releases/ │ └── yarn-3.5.1.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── FIFTYONE_TEAMS.md ├── LICENSE ├── README.md ├── RELEASING.md ├── __init__.py ├── db/ │ ├── __init__.py │ ├── client.py │ ├── memory.py │ └── tables.py ├── dist/ │ └── index.umd.js ├── fiftyone.yml ├── links/ │ ├── aggregation_classifier.py │ ├── aggregator.py │ ├── computation.py │ ├── data_inspection.py │ ├── docs_qa_with_sources.py │ ├── effective_query_generator.py │ ├── general_qa.py │ ├── introspection.py │ ├── query_intent_classifier.py │ ├── utils.py │ ├── view_creation_classifier.py │ ├── view_creation_planner.py │ ├── view_creator.py │ ├── view_setting_classifier.py │ ├── view_stage_constructor.py │ ├── view_stage_delegator.py │ ├── view_stage_validator.py │ └── workspace_inspection.py ├── package.json ├── prompts/ │ ├── add_to_existing_view_classification.txt │ ├── aggregation_analysis.txt │ ├── aggregation_delegation.txt │ ├── aggregation_expression.txt │ ├── compute_clustering.txt │ ├── compute_visualization.txt │ ├── computer_vision_response.txt │ ├── create_view_planning.txt │ ├── create_view_stage_delegation.txt │ ├── data_inspection_for_view_creation.txt │ ├── data_inspection_no_view_creation.txt │ ├── delegate_computation.txt │ ├── docs_computation_qa_retrieval.txt │ ├── docs_qa_retrieval.txt │ ├── effective_query_generation.txt │ ├── filter_field_bool_expression.txt │ ├── filter_field_date_expression.txt │ ├── filter_field_datetime_expression.txt │ ├── filter_field_float_expression.txt │ ├── filter_field_int_expression.txt │ ├── filter_field_list_expression.txt │ ├── filter_field_other_expression.txt │ ├── filter_field_string_expression.txt │ ├── help_dynamic.txt │ ├── help_message_markdown.txt │ ├── help_message_string.txt │ ├── intent_classification.txt │ ├── match_expression.txt │ ├── match_labels_detections_2d_expression.txt │ ├── match_labels_general_expression.txt │ ├── revise_view_creation_plan.txt │ ├── should_aggregate_classification.txt │ ├── should_create_view_classification.txt │ ├── should_run_computation_classification.txt │ ├── should_set_view_classification.txt │ ├── view_stage_prompt_suffixes.json │ └── workspace_inspection.txt ├── pyproject.toml ├── requirements.txt ├── scripts/ │ ├── archive.sh │ ├── release.sh │ └── update_version.py ├── src/ │ ├── Actions.tsx │ ├── Chat.tsx │ ├── InputBar.tsx │ ├── Intro.tsx │ ├── LoadingIndicator.tsx │ ├── Message.tsx │ ├── SendMessageToVoxelGPT.ts │ ├── ShowMessage.ts │ ├── VoxelGPT.tsx │ ├── avatars.tsx │ ├── constants.ts │ ├── state.ts │ ├── types.ts │ ├── useTypewriterEffect.ts │ └── utils.ts ├── tests/ │ ├── README.md │ ├── generate_tests.py │ ├── test_db.py │ ├── test_examples.csv │ ├── test_prompts.py │ └── test_simple_functions.py ├── vite.config.js └── voxelgpt.py