├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── 01_features ├── 1_feature_types.py ├── 2_custom_feature_types.py ├── 3_primary_keys.py ├── 4_has_one.py ├── 5_has_many.py ├── 6_has_one_has_many.py ├── 7_feature_time.py ├── 8_constructing_features.py └── README.md ├── 02_resolvers ├── 1_scalar_resolver.py ├── 2_multiple_features_resolver.py ├── 3_downstream_scalars.py ├── 4_downstream_dataframes.py ├── 5_tagged_resolvers.py ├── 6_sharing_resolvers.py ├── 7_multi_tenancy.py └── README.md ├── 03_caching ├── 1_basic_caching.py ├── 2_lastest_value.py ├── 3_intermediates.py ├── 4_override_max_staleness.py ├── 5_override_cache_values.py ├── 6_cache_busting.py ├── 7_prefetching.py └── README.md ├── 04_scheduling ├── 1_cron.py ├── 2_filtered_cron.py ├── 3_sample_arguments.py └── README.md ├── 05_feature_discovery ├── 1_descriptions.py ├── 2_owners.py ├── 3_tags.py ├── 4_unified.py └── README.md ├── 06_dataframe ├── 1_creating_dataframes.py ├── 2_filters.py ├── 3_projections.py ├── 4_filters_and_projections.py ├── 5_aggregations.py ├── 6_self_joins.py └── README.md ├── 07_streaming ├── 1_mapping_stream.py ├── 2_window_dataframe.py ├── 3_window_sql.py ├── 4_continuous_aggregation.py └── README.md ├── 08_testing ├── 1_unit_tests.py ├── 2_integration_tests.py └── README.md ├── 09_github_actions ├── 1_install_chalk_cli.yaml ├── 2_deploy_with_chalk.yaml ├── 3_deploy_preview.yaml └── README.md ├── 10_migrations └── README.md ├── 11_sql ├── 1_scalars.py ├── 2_dataframes.py ├── README.md └── user_views.sql ├── 12_model ├── 1_model.py ├── 2_openai.py ├── README.md └── churn_model.skops ├── 13_airflow ├── README.md ├── airflow.jpg ├── chalk_airflow.py ├── features.py ├── get_users.chalk.sql ├── isolated_environment.py ├── polling.py └── shared_environment.py ├── 14_codegen ├── README.md ├── __init__.py ├── custom_model.py ├── models.py └── score_resolvers.py ├── LICENSE ├── README.md ├── SECURITY.md ├── call_recordings ├── __init__.py ├── features │ ├── __init__.py │ ├── fathom │ │ ├── __init__.py │ │ ├── fathom_call.py │ │ ├── fathom_meeting_insights_sales.py │ │ ├── fathom_meeting_type.py │ │ ├── fathom_message_webhook.py │ │ └── fathom_messge_organization.py │ ├── fathom_feature_set.py │ └── named_queries.py └── sql │ ├── fathom_call.chalk.sql │ ├── fathom_call_data.chalk.sql │ └── fathom_message.chalk.sql ├── credit ├── 1_income.py ├── 2_accounts.py ├── 3_bureau_api.py ├── 4_aggregate_tradelines.py └── README.md ├── ecommerce ├── 1_users_sellers.py ├── 2_interactions.py ├── 3_streams.py └── README.md ├── fraud ├── 1_return.py ├── 2_patterns.py ├── 3_identity.py ├── 4_withdrawal_model.py ├── 5_account_takeover.py └── README.md ├── full_examples ├── batch_ml │ ├── README.md │ ├── chalk.yaml │ ├── models │ │ └── fraud_model.onnx │ ├── pyproject.toml │ ├── src │ │ ├── datasources.py │ │ ├── models.py │ │ ├── queries.py │ │ └── resolvers │ │ │ ├── fraud_model.py │ │ │ └── sql │ │ │ ├── get_transactions.chalk.sql │ │ │ ├── get_transactions_offline.chalk.sql │ │ │ ├── get_users.chalk.sql │ │ │ └── get_users_offline.chalk.sql │ ├── tests │ │ ├── __init__.py │ │ └── test_batch_prediction.py │ └── uv.lock ├── dynamic_pricing │ ├── README.md │ ├── chalk.yaml │ ├── requirements.txt │ └── src │ │ ├── datasources.py │ │ ├── feature_sets.py │ │ └── sql │ │ └── hotels.chalk.sql ├── fraud_transactions_with_llm │ ├── .chalkignore │ ├── .gitignore │ ├── README.md │ ├── chalk.yaml │ ├── requirements.txt │ ├── src │ │ ├── __init__.py │ │ ├── datasources.py │ │ ├── denylist.py │ │ ├── emailage │ │ │ ├── __init__.py │ │ │ └── client.py │ │ ├── experian │ │ │ └── __init__.py │ │ ├── groq.py │ │ ├── models.py │ │ ├── offline_queries.ipynb │ │ ├── prompts.py │ │ ├── resolvers.py │ │ ├── streaming.py │ │ ├── transactions.chalk.sql │ │ ├── transactions_offline.chalk.sql │ │ └── users.chalk.sql │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_denylisted.py ├── image_processing │ ├── README.md │ ├── chalk.yaml │ ├── pyproject.toml │ ├── requirements.txt │ └── src │ │ ├── __init__.py │ │ ├── feature_sets.py │ │ └── resolvers.py └── sagemaker │ ├── README.md │ ├── chalk_sagemaker_pipeline.py │ ├── requirements.txt │ ├── src │ ├── datasources.py │ ├── models.py │ └── resolvers │ │ ├── customers.chalk.sql │ │ └── transactions.chalk.sql │ └── steps │ ├── dataset.py │ ├── evaluate.py │ └── training.py ├── github ├── __init__.py ├── features │ ├── __init__.py │ ├── cerebras │ │ ├── __init__.py │ │ └── cerebras.py │ ├── fraud │ │ ├── __init__.py │ │ ├── github_event.chalk.sql │ │ ├── github_fraud.py │ │ └── prompts.py │ ├── github │ │ ├── __init__.py │ │ ├── github_archive.py │ │ ├── github_client_resolver.py │ │ ├── github_repo.py │ │ ├── github_repo_document_vector_database.py │ │ └── github_user.py │ ├── github_feature_set.py │ ├── groq │ │ ├── __init__.py │ │ └── groq.py │ ├── named_queries.py │ └── search │ │ ├── __init__.py │ │ ├── github_search.py │ │ ├── lancedb.py │ │ └── prompts.py └── sql │ ├── github_archive_stars.chalk.sql │ ├── github_archive_stars.sql │ ├── github_owner.sql │ └── github_repo.sql ├── marketing ├── __init__.py ├── customer_interaction.chalk.sql ├── event.chalk.sql ├── event_type.chalk.sql ├── models.py ├── product_area.chalk.sql ├── requirements.txt ├── session.chalk.sql └── user.chalk.sql ├── marketplace ├── __init__.py ├── interaction.chalk.sql ├── interaction │ └── interaction_type.py ├── item.chalk.sql ├── item_category │ ├── item_category_value_enum.py │ └── item_category_value_llm_prompts.py ├── item_price.chalk.sql ├── jupyter_notebook.ipynb ├── lancedb.py ├── models.py ├── named_queries.py ├── resolvers.py ├── resolvers_with_api_client.py ├── review.chalk.sql ├── seller.chalk.sql ├── tests.py └── user.chalk.sql ├── mocks └── __init__.py ├── mypy.ini ├── predictive_maintenance ├── 1_device_data.py ├── 2_time_query.py ├── 3_keep_data_fresh.py ├── 4_customer_sensors.py └── README.md ├── requirements.txt └── unstructured_data ├── .chalkignore ├── .gitignore ├── README.md ├── chalk.yaml ├── requirements.txt └── src ├── __init__.py ├── datasources.py ├── denylist.py ├── models.py ├── resolvers.py ├── transactions.chalk.sql └── users.chalk.sql /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /01_features/1_feature_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/1_feature_types.py -------------------------------------------------------------------------------- /01_features/2_custom_feature_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/2_custom_feature_types.py -------------------------------------------------------------------------------- /01_features/3_primary_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/3_primary_keys.py -------------------------------------------------------------------------------- /01_features/4_has_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/4_has_one.py -------------------------------------------------------------------------------- /01_features/5_has_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/5_has_many.py -------------------------------------------------------------------------------- /01_features/6_has_one_has_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/6_has_one_has_many.py -------------------------------------------------------------------------------- /01_features/7_feature_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/7_feature_time.py -------------------------------------------------------------------------------- /01_features/8_constructing_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/8_constructing_features.py -------------------------------------------------------------------------------- /01_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/01_features/README.md -------------------------------------------------------------------------------- /02_resolvers/1_scalar_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/1_scalar_resolver.py -------------------------------------------------------------------------------- /02_resolvers/2_multiple_features_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/2_multiple_features_resolver.py -------------------------------------------------------------------------------- /02_resolvers/3_downstream_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/3_downstream_scalars.py -------------------------------------------------------------------------------- /02_resolvers/4_downstream_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/4_downstream_dataframes.py -------------------------------------------------------------------------------- /02_resolvers/5_tagged_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/5_tagged_resolvers.py -------------------------------------------------------------------------------- /02_resolvers/6_sharing_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/6_sharing_resolvers.py -------------------------------------------------------------------------------- /02_resolvers/7_multi_tenancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/7_multi_tenancy.py -------------------------------------------------------------------------------- /02_resolvers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/02_resolvers/README.md -------------------------------------------------------------------------------- /03_caching/1_basic_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/1_basic_caching.py -------------------------------------------------------------------------------- /03_caching/2_lastest_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/2_lastest_value.py -------------------------------------------------------------------------------- /03_caching/3_intermediates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/3_intermediates.py -------------------------------------------------------------------------------- /03_caching/4_override_max_staleness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/4_override_max_staleness.py -------------------------------------------------------------------------------- /03_caching/5_override_cache_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/5_override_cache_values.py -------------------------------------------------------------------------------- /03_caching/6_cache_busting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/6_cache_busting.py -------------------------------------------------------------------------------- /03_caching/7_prefetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/7_prefetching.py -------------------------------------------------------------------------------- /03_caching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/03_caching/README.md -------------------------------------------------------------------------------- /04_scheduling/1_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/04_scheduling/1_cron.py -------------------------------------------------------------------------------- /04_scheduling/2_filtered_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/04_scheduling/2_filtered_cron.py -------------------------------------------------------------------------------- /04_scheduling/3_sample_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/04_scheduling/3_sample_arguments.py -------------------------------------------------------------------------------- /04_scheduling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/04_scheduling/README.md -------------------------------------------------------------------------------- /05_feature_discovery/1_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/05_feature_discovery/1_descriptions.py -------------------------------------------------------------------------------- /05_feature_discovery/2_owners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/05_feature_discovery/2_owners.py -------------------------------------------------------------------------------- /05_feature_discovery/3_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/05_feature_discovery/3_tags.py -------------------------------------------------------------------------------- /05_feature_discovery/4_unified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/05_feature_discovery/4_unified.py -------------------------------------------------------------------------------- /05_feature_discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/05_feature_discovery/README.md -------------------------------------------------------------------------------- /06_dataframe/1_creating_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/1_creating_dataframes.py -------------------------------------------------------------------------------- /06_dataframe/2_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/2_filters.py -------------------------------------------------------------------------------- /06_dataframe/3_projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/3_projections.py -------------------------------------------------------------------------------- /06_dataframe/4_filters_and_projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/4_filters_and_projections.py -------------------------------------------------------------------------------- /06_dataframe/5_aggregations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/5_aggregations.py -------------------------------------------------------------------------------- /06_dataframe/6_self_joins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/6_self_joins.py -------------------------------------------------------------------------------- /06_dataframe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/06_dataframe/README.md -------------------------------------------------------------------------------- /07_streaming/1_mapping_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/07_streaming/1_mapping_stream.py -------------------------------------------------------------------------------- /07_streaming/2_window_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/07_streaming/2_window_dataframe.py -------------------------------------------------------------------------------- /07_streaming/3_window_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/07_streaming/3_window_sql.py -------------------------------------------------------------------------------- /07_streaming/4_continuous_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/07_streaming/4_continuous_aggregation.py -------------------------------------------------------------------------------- /07_streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/07_streaming/README.md -------------------------------------------------------------------------------- /08_testing/1_unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/08_testing/1_unit_tests.py -------------------------------------------------------------------------------- /08_testing/2_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/08_testing/2_integration_tests.py -------------------------------------------------------------------------------- /08_testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/08_testing/README.md -------------------------------------------------------------------------------- /09_github_actions/1_install_chalk_cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/09_github_actions/1_install_chalk_cli.yaml -------------------------------------------------------------------------------- /09_github_actions/2_deploy_with_chalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/09_github_actions/2_deploy_with_chalk.yaml -------------------------------------------------------------------------------- /09_github_actions/3_deploy_preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/09_github_actions/3_deploy_preview.yaml -------------------------------------------------------------------------------- /09_github_actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/09_github_actions/README.md -------------------------------------------------------------------------------- /10_migrations/README.md: -------------------------------------------------------------------------------- 1 | # Migrations 2 | 3 | Examples to come! 4 | -------------------------------------------------------------------------------- /11_sql/1_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/11_sql/1_scalars.py -------------------------------------------------------------------------------- /11_sql/2_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/11_sql/2_dataframes.py -------------------------------------------------------------------------------- /11_sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/11_sql/README.md -------------------------------------------------------------------------------- /11_sql/user_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/11_sql/user_views.sql -------------------------------------------------------------------------------- /12_model/1_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/12_model/1_model.py -------------------------------------------------------------------------------- /12_model/2_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/12_model/2_openai.py -------------------------------------------------------------------------------- /12_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/12_model/README.md -------------------------------------------------------------------------------- /12_model/churn_model.skops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/12_model/churn_model.skops -------------------------------------------------------------------------------- /13_airflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/README.md -------------------------------------------------------------------------------- /13_airflow/airflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/airflow.jpg -------------------------------------------------------------------------------- /13_airflow/chalk_airflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/chalk_airflow.py -------------------------------------------------------------------------------- /13_airflow/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/features.py -------------------------------------------------------------------------------- /13_airflow/get_users.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/get_users.chalk.sql -------------------------------------------------------------------------------- /13_airflow/isolated_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/isolated_environment.py -------------------------------------------------------------------------------- /13_airflow/polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/polling.py -------------------------------------------------------------------------------- /13_airflow/shared_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/13_airflow/shared_environment.py -------------------------------------------------------------------------------- /14_codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/14_codegen/README.md -------------------------------------------------------------------------------- /14_codegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14_codegen/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/14_codegen/custom_model.py -------------------------------------------------------------------------------- /14_codegen/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/14_codegen/models.py -------------------------------------------------------------------------------- /14_codegen/score_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/14_codegen/score_resolvers.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /call_recordings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /call_recordings/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/__init__.py -------------------------------------------------------------------------------- /call_recordings/features/fathom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /call_recordings/features/fathom/fathom_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/fathom/fathom_call.py -------------------------------------------------------------------------------- /call_recordings/features/fathom/fathom_meeting_insights_sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/fathom/fathom_meeting_insights_sales.py -------------------------------------------------------------------------------- /call_recordings/features/fathom/fathom_meeting_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/fathom/fathom_meeting_type.py -------------------------------------------------------------------------------- /call_recordings/features/fathom/fathom_message_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/fathom/fathom_message_webhook.py -------------------------------------------------------------------------------- /call_recordings/features/fathom/fathom_messge_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/fathom/fathom_messge_organization.py -------------------------------------------------------------------------------- /call_recordings/features/fathom_feature_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/fathom_feature_set.py -------------------------------------------------------------------------------- /call_recordings/features/named_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/features/named_queries.py -------------------------------------------------------------------------------- /call_recordings/sql/fathom_call.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/sql/fathom_call.chalk.sql -------------------------------------------------------------------------------- /call_recordings/sql/fathom_call_data.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/sql/fathom_call_data.chalk.sql -------------------------------------------------------------------------------- /call_recordings/sql/fathom_message.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/call_recordings/sql/fathom_message.chalk.sql -------------------------------------------------------------------------------- /credit/1_income.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/credit/1_income.py -------------------------------------------------------------------------------- /credit/2_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/credit/2_accounts.py -------------------------------------------------------------------------------- /credit/3_bureau_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/credit/3_bureau_api.py -------------------------------------------------------------------------------- /credit/4_aggregate_tradelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/credit/4_aggregate_tradelines.py -------------------------------------------------------------------------------- /credit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/credit/README.md -------------------------------------------------------------------------------- /ecommerce/1_users_sellers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/ecommerce/1_users_sellers.py -------------------------------------------------------------------------------- /ecommerce/2_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/ecommerce/2_interactions.py -------------------------------------------------------------------------------- /ecommerce/3_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/ecommerce/3_streams.py -------------------------------------------------------------------------------- /ecommerce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/ecommerce/README.md -------------------------------------------------------------------------------- /fraud/1_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/fraud/1_return.py -------------------------------------------------------------------------------- /fraud/2_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/fraud/2_patterns.py -------------------------------------------------------------------------------- /fraud/3_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/fraud/3_identity.py -------------------------------------------------------------------------------- /fraud/4_withdrawal_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/fraud/4_withdrawal_model.py -------------------------------------------------------------------------------- /fraud/5_account_takeover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/fraud/5_account_takeover.py -------------------------------------------------------------------------------- /fraud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/fraud/README.md -------------------------------------------------------------------------------- /full_examples/batch_ml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/README.md -------------------------------------------------------------------------------- /full_examples/batch_ml/chalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/chalk.yaml -------------------------------------------------------------------------------- /full_examples/batch_ml/models/fraud_model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/models/fraud_model.onnx -------------------------------------------------------------------------------- /full_examples/batch_ml/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/pyproject.toml -------------------------------------------------------------------------------- /full_examples/batch_ml/src/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/datasources.py -------------------------------------------------------------------------------- /full_examples/batch_ml/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/models.py -------------------------------------------------------------------------------- /full_examples/batch_ml/src/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/queries.py -------------------------------------------------------------------------------- /full_examples/batch_ml/src/resolvers/fraud_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/resolvers/fraud_model.py -------------------------------------------------------------------------------- /full_examples/batch_ml/src/resolvers/sql/get_transactions.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/resolvers/sql/get_transactions.chalk.sql -------------------------------------------------------------------------------- /full_examples/batch_ml/src/resolvers/sql/get_transactions_offline.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/resolvers/sql/get_transactions_offline.chalk.sql -------------------------------------------------------------------------------- /full_examples/batch_ml/src/resolvers/sql/get_users.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/resolvers/sql/get_users.chalk.sql -------------------------------------------------------------------------------- /full_examples/batch_ml/src/resolvers/sql/get_users_offline.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/src/resolvers/sql/get_users_offline.chalk.sql -------------------------------------------------------------------------------- /full_examples/batch_ml/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full_examples/batch_ml/tests/test_batch_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/tests/test_batch_prediction.py -------------------------------------------------------------------------------- /full_examples/batch_ml/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/batch_ml/uv.lock -------------------------------------------------------------------------------- /full_examples/dynamic_pricing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/dynamic_pricing/README.md -------------------------------------------------------------------------------- /full_examples/dynamic_pricing/chalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/dynamic_pricing/chalk.yaml -------------------------------------------------------------------------------- /full_examples/dynamic_pricing/requirements.txt: -------------------------------------------------------------------------------- 1 | chalkpy[runtime,postgresql] 2 | -------------------------------------------------------------------------------- /full_examples/dynamic_pricing/src/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/dynamic_pricing/src/datasources.py -------------------------------------------------------------------------------- /full_examples/dynamic_pricing/src/feature_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/dynamic_pricing/src/feature_sets.py -------------------------------------------------------------------------------- /full_examples/dynamic_pricing/src/sql/hotels.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/dynamic_pricing/src/sql/hotels.chalk.sql -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/.chalkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/.chalkignore -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/.gitignore -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/README.md -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/chalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/chalk.yaml -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/requirements.txt: -------------------------------------------------------------------------------- 1 | chalkpy[runtime,postgresql] 2 | google-generativeai 3 | -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/__init__.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/datasources.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/denylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/denylist.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/emailage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/emailage/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/emailage/client.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/experian/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/experian/__init__.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/groq.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/models.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/offline_queries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/offline_queries.ipynb -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/prompts.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/resolvers.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/streaming.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/transactions.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/transactions.chalk.sql -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/transactions_offline.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/transactions_offline.chalk.sql -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/src/users.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/src/users.chalk.sql -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/tests/conftest.py -------------------------------------------------------------------------------- /full_examples/fraud_transactions_with_llm/tests/test_denylisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/fraud_transactions_with_llm/tests/test_denylisted.py -------------------------------------------------------------------------------- /full_examples/image_processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/image_processing/README.md -------------------------------------------------------------------------------- /full_examples/image_processing/chalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/image_processing/chalk.yaml -------------------------------------------------------------------------------- /full_examples/image_processing/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/image_processing/pyproject.toml -------------------------------------------------------------------------------- /full_examples/image_processing/requirements.txt: -------------------------------------------------------------------------------- 1 | chalkpy[runtime] 2 | beautifulsoup4 3 | requests 4 | pillow 5 | CairoSVG==2.5.2 6 | -------------------------------------------------------------------------------- /full_examples/image_processing/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full_examples/image_processing/src/feature_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/image_processing/src/feature_sets.py -------------------------------------------------------------------------------- /full_examples/image_processing/src/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/image_processing/src/resolvers.py -------------------------------------------------------------------------------- /full_examples/sagemaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/README.md -------------------------------------------------------------------------------- /full_examples/sagemaker/chalk_sagemaker_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/chalk_sagemaker_pipeline.py -------------------------------------------------------------------------------- /full_examples/sagemaker/requirements.txt: -------------------------------------------------------------------------------- 1 | chalkpy 2 | sagemaker 3 | scikit-learn 4 | -------------------------------------------------------------------------------- /full_examples/sagemaker/src/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/src/datasources.py -------------------------------------------------------------------------------- /full_examples/sagemaker/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/src/models.py -------------------------------------------------------------------------------- /full_examples/sagemaker/src/resolvers/customers.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/src/resolvers/customers.chalk.sql -------------------------------------------------------------------------------- /full_examples/sagemaker/src/resolvers/transactions.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/src/resolvers/transactions.chalk.sql -------------------------------------------------------------------------------- /full_examples/sagemaker/steps/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/steps/dataset.py -------------------------------------------------------------------------------- /full_examples/sagemaker/steps/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/steps/evaluate.py -------------------------------------------------------------------------------- /full_examples/sagemaker/steps/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/full_examples/sagemaker/steps/training.py -------------------------------------------------------------------------------- /github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/__init__.py -------------------------------------------------------------------------------- /github/features/cerebras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github/features/cerebras/cerebras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/cerebras/cerebras.py -------------------------------------------------------------------------------- /github/features/fraud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github/features/fraud/github_event.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/fraud/github_event.chalk.sql -------------------------------------------------------------------------------- /github/features/fraud/github_fraud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/fraud/github_fraud.py -------------------------------------------------------------------------------- /github/features/fraud/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/fraud/prompts.py -------------------------------------------------------------------------------- /github/features/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github/features/github/github_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/github/github_archive.py -------------------------------------------------------------------------------- /github/features/github/github_client_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/github/github_client_resolver.py -------------------------------------------------------------------------------- /github/features/github/github_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/github/github_repo.py -------------------------------------------------------------------------------- /github/features/github/github_repo_document_vector_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/github/github_repo_document_vector_database.py -------------------------------------------------------------------------------- /github/features/github/github_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/github/github_user.py -------------------------------------------------------------------------------- /github/features/github_feature_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/github_feature_set.py -------------------------------------------------------------------------------- /github/features/groq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github/features/groq/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/groq/groq.py -------------------------------------------------------------------------------- /github/features/named_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/named_queries.py -------------------------------------------------------------------------------- /github/features/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/search/__init__.py -------------------------------------------------------------------------------- /github/features/search/github_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/search/github_search.py -------------------------------------------------------------------------------- /github/features/search/lancedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/search/lancedb.py -------------------------------------------------------------------------------- /github/features/search/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/features/search/prompts.py -------------------------------------------------------------------------------- /github/sql/github_archive_stars.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/sql/github_archive_stars.chalk.sql -------------------------------------------------------------------------------- /github/sql/github_archive_stars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/sql/github_archive_stars.sql -------------------------------------------------------------------------------- /github/sql/github_owner.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/sql/github_owner.sql -------------------------------------------------------------------------------- /github/sql/github_repo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/github/sql/github_repo.sql -------------------------------------------------------------------------------- /marketing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/__init__.py -------------------------------------------------------------------------------- /marketing/customer_interaction.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/customer_interaction.chalk.sql -------------------------------------------------------------------------------- /marketing/event.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/event.chalk.sql -------------------------------------------------------------------------------- /marketing/event_type.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/event_type.chalk.sql -------------------------------------------------------------------------------- /marketing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/models.py -------------------------------------------------------------------------------- /marketing/product_area.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/product_area.chalk.sql -------------------------------------------------------------------------------- /marketing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/requirements.txt -------------------------------------------------------------------------------- /marketing/session.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/session.chalk.sql -------------------------------------------------------------------------------- /marketing/user.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketing/user.chalk.sql -------------------------------------------------------------------------------- /marketplace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/__init__.py -------------------------------------------------------------------------------- /marketplace/interaction.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/interaction.chalk.sql -------------------------------------------------------------------------------- /marketplace/interaction/interaction_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/interaction/interaction_type.py -------------------------------------------------------------------------------- /marketplace/item.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/item.chalk.sql -------------------------------------------------------------------------------- /marketplace/item_category/item_category_value_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/item_category/item_category_value_enum.py -------------------------------------------------------------------------------- /marketplace/item_category/item_category_value_llm_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/item_category/item_category_value_llm_prompts.py -------------------------------------------------------------------------------- /marketplace/item_price.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/item_price.chalk.sql -------------------------------------------------------------------------------- /marketplace/jupyter_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/jupyter_notebook.ipynb -------------------------------------------------------------------------------- /marketplace/lancedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/lancedb.py -------------------------------------------------------------------------------- /marketplace/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/models.py -------------------------------------------------------------------------------- /marketplace/named_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/named_queries.py -------------------------------------------------------------------------------- /marketplace/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/resolvers.py -------------------------------------------------------------------------------- /marketplace/resolvers_with_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/resolvers_with_api_client.py -------------------------------------------------------------------------------- /marketplace/review.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/review.chalk.sql -------------------------------------------------------------------------------- /marketplace/seller.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/seller.chalk.sql -------------------------------------------------------------------------------- /marketplace/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/tests.py -------------------------------------------------------------------------------- /marketplace/user.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/marketplace/user.chalk.sql -------------------------------------------------------------------------------- /mocks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/mocks/__init__.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/mypy.ini -------------------------------------------------------------------------------- /predictive_maintenance/1_device_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/predictive_maintenance/1_device_data.py -------------------------------------------------------------------------------- /predictive_maintenance/2_time_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/predictive_maintenance/2_time_query.py -------------------------------------------------------------------------------- /predictive_maintenance/3_keep_data_fresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/predictive_maintenance/3_keep_data_fresh.py -------------------------------------------------------------------------------- /predictive_maintenance/4_customer_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/predictive_maintenance/4_customer_sensors.py -------------------------------------------------------------------------------- /predictive_maintenance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/predictive_maintenance/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | chalkpy>=1.11.8 2 | pydantic 3 | cattrs 4 | requests -------------------------------------------------------------------------------- /unstructured_data/.chalkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/.chalkignore -------------------------------------------------------------------------------- /unstructured_data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/.gitignore -------------------------------------------------------------------------------- /unstructured_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/README.md -------------------------------------------------------------------------------- /unstructured_data/chalk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/chalk.yaml -------------------------------------------------------------------------------- /unstructured_data/requirements.txt: -------------------------------------------------------------------------------- 1 | chalkpy[runtime,postgresql] 2 | google-generativeai 3 | -------------------------------------------------------------------------------- /unstructured_data/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/__init__.py -------------------------------------------------------------------------------- /unstructured_data/src/datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/datasources.py -------------------------------------------------------------------------------- /unstructured_data/src/denylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/denylist.py -------------------------------------------------------------------------------- /unstructured_data/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/models.py -------------------------------------------------------------------------------- /unstructured_data/src/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/resolvers.py -------------------------------------------------------------------------------- /unstructured_data/src/transactions.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/transactions.chalk.sql -------------------------------------------------------------------------------- /unstructured_data/src/users.chalk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalk-ai/examples/HEAD/unstructured_data/src/users.chalk.sql --------------------------------------------------------------------------------