synth-ai 0.2.9.dev11__py3-none-any.whl → 0.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of synth-ai might be problematic. Click here for more details.
- synth_ai/__init__.py +44 -45
- synth_ai/__main__.py +30 -3
- synth_ai/cli/__init__.py +104 -78
- synth_ai/cli/__main__.py +42 -0
- synth_ai/cli/_internal/__init__.py +5 -0
- synth_ai/cli/_internal/modal_wrapper.py +31 -0
- synth_ai/cli/_internal/storage.py +20 -0
- synth_ai/cli/_internal/typer_patch.py +47 -0
- synth_ai/cli/_internal/validate_task_app.py +29 -0
- synth_ai/cli/agents/__init__.py +17 -0
- synth_ai/cli/agents/claude.py +77 -0
- synth_ai/cli/agents/codex.py +265 -0
- synth_ai/cli/agents/opencode.py +253 -0
- synth_ai/cli/commands/__init__.py +18 -0
- synth_ai/cli/commands/artifacts/__init__.py +13 -0
- synth_ai/cli/commands/artifacts/client.py +119 -0
- synth_ai/cli/commands/artifacts/config.py +57 -0
- synth_ai/cli/commands/artifacts/core.py +24 -0
- synth_ai/cli/commands/artifacts/download.py +188 -0
- synth_ai/cli/commands/artifacts/export.py +186 -0
- synth_ai/cli/commands/artifacts/list.py +156 -0
- synth_ai/cli/commands/artifacts/parsing.py +250 -0
- synth_ai/cli/commands/artifacts/show.py +336 -0
- synth_ai/cli/commands/baseline/__init__.py +12 -0
- synth_ai/cli/commands/baseline/core.py +636 -0
- synth_ai/cli/commands/baseline/list.py +94 -0
- synth_ai/cli/commands/demo/__init__.py +3 -0
- synth_ai/cli/commands/demo/core.py +153 -0
- synth_ai/cli/commands/eval/__init__.py +19 -0
- synth_ai/cli/commands/eval/core.py +1113 -0
- synth_ai/cli/commands/eval/errors.py +81 -0
- synth_ai/cli/commands/eval/validation.py +133 -0
- synth_ai/cli/commands/filter/__init__.py +12 -0
- synth_ai/cli/commands/filter/core.py +424 -0
- synth_ai/cli/commands/filter/errors.py +55 -0
- synth_ai/cli/commands/filter/validation.py +77 -0
- synth_ai/cli/commands/help/__init__.py +185 -0
- synth_ai/cli/commands/help/core.py +72 -0
- synth_ai/cli/commands/scan/__init__.py +19 -0
- synth_ai/cli/commands/scan/cloudflare_scanner.py +403 -0
- synth_ai/cli/commands/scan/core.py +344 -0
- synth_ai/cli/commands/scan/health_checker.py +242 -0
- synth_ai/cli/commands/scan/local_scanner.py +278 -0
- synth_ai/cli/commands/scan/models.py +83 -0
- synth_ai/cli/commands/smoke/__init__.py +7 -0
- synth_ai/cli/commands/smoke/core.py +1438 -0
- synth_ai/cli/commands/status/__init__.py +66 -0
- synth_ai/cli/commands/status/client.py +192 -0
- synth_ai/cli/commands/status/config.py +92 -0
- synth_ai/cli/commands/status/errors.py +20 -0
- synth_ai/cli/commands/status/formatters.py +164 -0
- synth_ai/cli/commands/status/subcommands/__init__.py +9 -0
- synth_ai/cli/commands/status/subcommands/files.py +79 -0
- synth_ai/cli/commands/status/subcommands/jobs.py +334 -0
- synth_ai/cli/commands/status/subcommands/models.py +79 -0
- synth_ai/cli/commands/status/subcommands/pricing.py +23 -0
- synth_ai/cli/commands/status/subcommands/runs.py +81 -0
- synth_ai/cli/commands/status/subcommands/session.py +182 -0
- synth_ai/cli/commands/status/subcommands/summary.py +47 -0
- synth_ai/cli/commands/status/subcommands/usage.py +203 -0
- synth_ai/cli/commands/status/utils.py +114 -0
- synth_ai/cli/commands/train/__init__.py +53 -0
- synth_ai/cli/commands/train/core.py +22 -0
- synth_ai/cli/commands/train/errors.py +117 -0
- synth_ai/cli/commands/train/judge_schemas.py +201 -0
- synth_ai/cli/commands/train/judge_validation.py +305 -0
- synth_ai/cli/commands/train/prompt_learning_validation.py +633 -0
- synth_ai/cli/commands/train/validation.py +392 -0
- synth_ai/cli/demo_apps/__init__.py +10 -0
- synth_ai/cli/demo_apps/core/__init__.py +28 -0
- synth_ai/cli/demo_apps/core/cli.py +1735 -0
- synth_ai/cli/demo_apps/crafter/crafter_fft_4b.toml +55 -0
- synth_ai/cli/demo_apps/crafter/grpo_crafter_task_app.py +186 -0
- synth_ai/cli/demo_apps/crafter/rl_from_base_qwen4b.toml +74 -0
- synth_ai/cli/demo_apps/demo_registry.py +176 -0
- synth_ai/cli/demo_apps/demo_task_apps/core.py +440 -0
- synth_ai/cli/demo_apps/demo_task_apps/crafter/__init__.py +1 -0
- synth_ai/cli/demo_apps/demo_task_apps/crafter/grpo_crafter_task_app.py +185 -0
- synth_ai/cli/demo_apps/demo_task_apps/math/modal_task_app.py +742 -0
- synth_ai/cli/demo_apps/demo_task_apps/math/task_app_entry.py +39 -0
- synth_ai/cli/demo_apps/math/__init__.py +1 -0
- synth_ai/cli/demo_apps/math/_common.py +16 -0
- synth_ai/cli/demo_apps/math/app.py +38 -0
- synth_ai/cli/demo_apps/math/config.toml +76 -0
- synth_ai/cli/demo_apps/math/deploy_modal.py +54 -0
- synth_ai/cli/demo_apps/math/modal_task_app.py +702 -0
- synth_ai/cli/demo_apps/math/task_app_entry.py +53 -0
- synth_ai/cli/demo_apps/mipro/main.py +271 -0
- synth_ai/cli/demo_apps/mipro/task_app.py +933 -0
- synth_ai/cli/demo_apps/mipro/train_cfg.toml +92 -0
- synth_ai/cli/demos/__init__.py +12 -0
- synth_ai/cli/demos/demo.py +32 -0
- synth_ai/cli/demos/rl_demo.py +254 -0
- synth_ai/cli/deploy.py +216 -0
- synth_ai/cli/infra/__init__.py +14 -0
- synth_ai/cli/infra/balance.py +216 -0
- synth_ai/cli/infra/mcp.py +35 -0
- synth_ai/cli/infra/modal_app.py +36 -0
- synth_ai/cli/infra/setup.py +69 -0
- synth_ai/cli/infra/status.py +16 -0
- synth_ai/cli/infra/turso.py +77 -0
- synth_ai/cli/lib/__init__.py +10 -0
- synth_ai/cli/lib/agents.py +76 -0
- synth_ai/cli/lib/apps/modal_app.py +101 -0
- synth_ai/cli/lib/apps/task_app.py +643 -0
- synth_ai/cli/lib/bin.py +39 -0
- synth_ai/cli/lib/env.py +375 -0
- synth_ai/cli/lib/errors.py +85 -0
- synth_ai/cli/lib/modal.py +315 -0
- synth_ai/cli/lib/plotting.py +126 -0
- synth_ai/cli/lib/prompt_args.py +39 -0
- synth_ai/cli/lib/prompts.py +284 -0
- synth_ai/cli/lib/sqld.py +122 -0
- synth_ai/cli/lib/task_app_discovery.py +884 -0
- synth_ai/cli/lib/task_app_env.py +295 -0
- synth_ai/cli/lib/train_cfgs.py +300 -0
- synth_ai/cli/lib/tunnel_records.py +207 -0
- synth_ai/cli/local/__init__.py +14 -0
- synth_ai/cli/local/experiment_queue/__init__.py +72 -0
- synth_ai/cli/local/experiment_queue/api_schemas.py +221 -0
- synth_ai/cli/local/experiment_queue/celery_app.py +208 -0
- synth_ai/cli/local/experiment_queue/config.py +128 -0
- synth_ai/cli/local/experiment_queue/config_utils.py +272 -0
- synth_ai/cli/local/experiment_queue/database.py +175 -0
- synth_ai/cli/local/experiment_queue/dispatcher.py +119 -0
- synth_ai/cli/local/experiment_queue/models.py +231 -0
- synth_ai/cli/local/experiment_queue/progress_info.py +160 -0
- synth_ai/cli/local/experiment_queue/results.py +373 -0
- synth_ai/cli/local/experiment_queue/schemas.py +131 -0
- synth_ai/cli/local/experiment_queue/service.py +344 -0
- synth_ai/cli/local/experiment_queue/status.py +372 -0
- synth_ai/cli/local/experiment_queue/status_tracker.py +360 -0
- synth_ai/cli/local/experiment_queue/tasks.py +1984 -0
- synth_ai/cli/local/experiment_queue/trace_storage.py +65 -0
- synth_ai/cli/local/experiment_queue/validation.py +157 -0
- synth_ai/cli/local/session/__init__.py +92 -0
- synth_ai/cli/local/session/client.py +383 -0
- synth_ai/cli/local/session/constants.py +63 -0
- synth_ai/cli/local/session/exceptions.py +105 -0
- synth_ai/cli/local/session/manager.py +139 -0
- synth_ai/cli/local/session/models.py +89 -0
- synth_ai/cli/local/session/query.py +110 -0
- synth_ai/cli/root.py +30 -103
- synth_ai/cli/task_apps/__init__.py +26 -0
- synth_ai/cli/task_apps/commands.py +3153 -0
- synth_ai/cli/task_apps/deploy.py +7 -0
- synth_ai/cli/task_apps/list.py +26 -0
- synth_ai/cli/task_apps/main.py +36 -0
- synth_ai/cli/task_apps/modal_serve.py +11 -0
- synth_ai/cli/task_apps/serve.py +11 -0
- synth_ai/cli/training/__init__.py +8 -0
- synth_ai/cli/training/train.py +5 -0
- synth_ai/cli/training/train_cfg.py +34 -0
- synth_ai/cli/training/watch.py +506 -0
- synth_ai/cli/turso.py +34 -55
- synth_ai/cli/usage.py +159 -0
- synth_ai/cli/utils/__init__.py +8 -0
- synth_ai/cli/utils/experiments.py +235 -0
- synth_ai/cli/utils/queue.py +504 -0
- synth_ai/cli/utils/recent.py +133 -0
- synth_ai/cli/utils/traces.py +164 -0
- synth_ai/contracts/__init__.py +67 -0
- synth_ai/core/__init__.py +100 -0
- synth_ai/core/_utils/__init__.py +54 -0
- synth_ai/core/_utils/base_url.py +10 -0
- synth_ai/core/_utils/http.py +10 -0
- synth_ai/core/_utils/prompts.py +14 -0
- synth_ai/core/_utils/task_app_state.py +12 -0
- synth_ai/core/_utils/user_config.py +10 -0
- synth_ai/core/apps/common.py +116 -0
- synth_ai/core/auth.py +95 -0
- synth_ai/core/cfgs.py +240 -0
- synth_ai/core/config/__init__.py +16 -0
- synth_ai/core/config/base.py +168 -0
- synth_ai/core/config/resolver.py +89 -0
- synth_ai/core/env.py +220 -0
- synth_ai/core/errors.py +126 -0
- synth_ai/core/http.py +230 -0
- synth_ai/core/integrations/__init__.py +11 -0
- synth_ai/core/integrations/cloudflare.py +1710 -0
- synth_ai/core/integrations/mcp/__init__.py +6 -0
- synth_ai/core/integrations/mcp/__main__.py +8 -0
- synth_ai/core/integrations/mcp/claude.py +36 -0
- synth_ai/core/integrations/mcp/main.py +254 -0
- synth_ai/core/integrations/mcp/setup.py +100 -0
- synth_ai/core/integrations/modal.py +277 -0
- synth_ai/core/json.py +72 -0
- synth_ai/core/log_filter.py +99 -0
- synth_ai/core/logging.py +82 -0
- synth_ai/core/paths.py +107 -0
- synth_ai/core/pricing.py +109 -0
- synth_ai/core/process.py +233 -0
- synth_ai/core/ssl.py +25 -0
- synth_ai/core/storage/__init__.py +71 -0
- synth_ai/core/task_app_state.py +318 -0
- synth_ai/core/telemetry.py +282 -0
- synth_ai/core/tracing_v3/__init__.py +99 -0
- synth_ai/core/tracing_v3/config.py +229 -0
- synth_ai/core/tracing_v3/constants.py +21 -0
- synth_ai/core/tracing_v3/db_config.py +182 -0
- synth_ai/core/tracing_v3/decorators.py +401 -0
- synth_ai/core/tracing_v3/examples/basic_usage.py +194 -0
- synth_ai/core/tracing_v3/llm_call_record_helpers.py +437 -0
- synth_ai/core/tracing_v3/migration_helper.py +119 -0
- synth_ai/core/tracing_v3/replica_sync.py +262 -0
- synth_ai/core/tracing_v3/serialization.py +130 -0
- synth_ai/core/tracing_v3/session_tracer.py +542 -0
- synth_ai/core/tracing_v3/storage/base.py +211 -0
- synth_ai/core/tracing_v3/storage/config.py +109 -0
- synth_ai/core/tracing_v3/storage/factory.py +39 -0
- synth_ai/core/tracing_v3/storage/utils.py +206 -0
- synth_ai/core/tracing_v3/trace_utils.py +326 -0
- synth_ai/core/tracing_v3/turso/__init__.py +12 -0
- synth_ai/core/tracing_v3/turso/daemon.py +278 -0
- synth_ai/core/tracing_v3/turso/models.py +470 -0
- synth_ai/core/tracing_v3/turso/native_manager.py +1385 -0
- synth_ai/core/tracing_v3/utils.py +108 -0
- synth_ai/core/urls.py +18 -0
- synth_ai/core/user_config.py +137 -0
- synth_ai/core/uvicorn.py +222 -0
- synth_ai/data/__init__.py +110 -0
- synth_ai/data/enums.py +141 -0
- synth_ai/data/rewards.py +152 -0
- synth_ai/data/specs.py +36 -0
- synth_ai/data/traces.py +35 -0
- synth_ai/products/__init__.py +6 -0
- synth_ai/products/graph_evolve/__init__.py +46 -0
- synth_ai/products/graph_evolve/client.py +226 -0
- synth_ai/products/graph_evolve/config.py +591 -0
- synth_ai/products/graph_evolve/converters/__init__.py +42 -0
- synth_ai/products/graph_evolve/converters/openai_sft.py +484 -0
- synth_ai/products/graph_evolve/examples/hotpotqa/config.toml +109 -0
- synth_ai/products/graph_evolve/run.py +222 -0
- synth_ai/sdk/__init__.py +119 -0
- synth_ai/sdk/api/__init__.py +1 -0
- synth_ai/sdk/api/models/supported.py +514 -0
- synth_ai/sdk/api/research_agent/__init__.py +86 -0
- synth_ai/sdk/api/research_agent/cli.py +428 -0
- synth_ai/sdk/api/research_agent/config.py +357 -0
- synth_ai/sdk/api/research_agent/job.py +717 -0
- synth_ai/sdk/api/train/__init__.py +85 -0
- synth_ai/sdk/api/train/builders.py +895 -0
- synth_ai/sdk/api/train/cli.py +2188 -0
- synth_ai/sdk/api/train/config_finder.py +267 -0
- synth_ai/sdk/api/train/configs/__init__.py +65 -0
- synth_ai/sdk/api/train/configs/prompt_learning.py +1706 -0
- synth_ai/sdk/api/train/configs/rl.py +188 -0
- synth_ai/sdk/api/train/configs/sft.py +99 -0
- synth_ai/sdk/api/train/configs/shared.py +81 -0
- synth_ai/sdk/api/train/context_learning.py +312 -0
- synth_ai/sdk/api/train/env_resolver.py +418 -0
- synth_ai/sdk/api/train/graph_validators.py +216 -0
- synth_ai/sdk/api/train/graphgen.py +984 -0
- synth_ai/sdk/api/train/graphgen_models.py +823 -0
- synth_ai/sdk/api/train/graphgen_validators.py +109 -0
- synth_ai/sdk/api/train/pollers.py +124 -0
- synth_ai/sdk/api/train/progress/__init__.py +97 -0
- synth_ai/sdk/api/train/progress/dataclasses.py +569 -0
- synth_ai/sdk/api/train/progress/events.py +326 -0
- synth_ai/sdk/api/train/progress/results.py +428 -0
- synth_ai/sdk/api/train/progress/tracker.py +641 -0
- synth_ai/sdk/api/train/prompt_learning.py +470 -0
- synth_ai/sdk/api/train/rl.py +442 -0
- synth_ai/sdk/api/train/sft.py +396 -0
- synth_ai/sdk/api/train/summary.py +522 -0
- synth_ai/sdk/api/train/supported_algos.py +147 -0
- synth_ai/sdk/api/train/task_app.py +331 -0
- synth_ai/sdk/api/train/utils.py +279 -0
- synth_ai/sdk/api/train/validators.py +2424 -0
- synth_ai/sdk/baseline/__init__.py +25 -0
- synth_ai/sdk/baseline/config.py +209 -0
- synth_ai/sdk/baseline/discovery.py +216 -0
- synth_ai/sdk/baseline/execution.py +154 -0
- synth_ai/sdk/graphs/__init__.py +15 -0
- synth_ai/sdk/graphs/completions.py +570 -0
- synth_ai/sdk/inference/__init__.py +6 -0
- synth_ai/sdk/inference/client.py +128 -0
- synth_ai/sdk/jobs/__init__.py +16 -0
- synth_ai/sdk/jobs/client.py +371 -0
- synth_ai/sdk/judging/__init__.py +15 -0
- synth_ai/sdk/judging/base.py +24 -0
- synth_ai/sdk/judging/client.py +191 -0
- synth_ai/sdk/judging/schemas.py +222 -0
- synth_ai/sdk/judging/types.py +42 -0
- synth_ai/sdk/learning/__init__.py +69 -0
- synth_ai/sdk/learning/client.py +240 -0
- synth_ai/sdk/learning/ft_client.py +7 -0
- synth_ai/sdk/learning/health.py +49 -0
- synth_ai/sdk/learning/jobs.py +202 -0
- synth_ai/sdk/learning/prompt_extraction.py +334 -0
- synth_ai/sdk/learning/prompt_learning_client.py +455 -0
- synth_ai/sdk/learning/prompt_learning_types.py +185 -0
- synth_ai/sdk/learning/rl/client.py +268 -0
- synth_ai/sdk/learning/rl/contracts.py +27 -0
- synth_ai/sdk/learning/rl/env_keys.py +166 -0
- synth_ai/sdk/learning/rl/secrets.py +13 -0
- synth_ai/sdk/learning/sft/client.py +95 -0
- synth_ai/sdk/learning/sft/config.py +270 -0
- synth_ai/sdk/learning/sft/data.py +698 -0
- synth_ai/sdk/learning/validators.py +52 -0
- synth_ai/sdk/research_agent/__init__.py +34 -0
- synth_ai/sdk/research_agent/container_builder.py +328 -0
- synth_ai/sdk/research_agent/container_spec.py +198 -0
- synth_ai/sdk/research_agent/defaults.py +34 -0
- synth_ai/sdk/research_agent/results_collector.py +69 -0
- synth_ai/sdk/specs/__init__.py +46 -0
- synth_ai/sdk/specs/dataclasses.py +149 -0
- synth_ai/sdk/specs/loader.py +144 -0
- synth_ai/sdk/specs/serializer.py +199 -0
- synth_ai/sdk/specs/validation.py +250 -0
- synth_ai/sdk/streaming/__init__.py +35 -0
- synth_ai/sdk/streaming/config.py +94 -0
- synth_ai/sdk/streaming/handlers.py +1997 -0
- synth_ai/sdk/streaming/streamer.py +704 -0
- synth_ai/sdk/streaming/types.py +112 -0
- synth_ai/sdk/task/__init__.py +151 -0
- synth_ai/sdk/task/apps/__init__.py +133 -0
- synth_ai/sdk/task/config.py +261 -0
- synth_ai/sdk/task/contracts.py +298 -0
- synth_ai/sdk/task/datasets.py +108 -0
- synth_ai/sdk/task/in_process.py +1190 -0
- synth_ai/sdk/task/in_process_runner.py +309 -0
- synth_ai/sdk/task/inference_api.py +299 -0
- synth_ai/sdk/task/proxy.py +287 -0
- synth_ai/sdk/task/rubrics/__init__.py +55 -0
- synth_ai/sdk/task/rubrics/loaders.py +156 -0
- synth_ai/sdk/task/rubrics/models.py +57 -0
- synth_ai/sdk/task/rubrics/scoring.py +116 -0
- synth_ai/sdk/task/rubrics/strict.py +149 -0
- synth_ai/sdk/task/server.py +580 -0
- synth_ai/sdk/task/trace_correlation_helpers.py +506 -0
- synth_ai/sdk/task/tracing_utils.py +95 -0
- synth_ai/sdk/task/validators.py +456 -0
- synth_ai/sdk/tracing/__init__.py +39 -0
- synth_ai/sdk/training/__init__.py +102 -0
- synth_ai/sdk/usage/__init__.py +37 -0
- synth_ai/sdk/usage/client.py +171 -0
- synth_ai/sdk/usage/models.py +261 -0
- synth_ai/utils/__init__.py +213 -0
- synth_ai-0.4.1.dist-info/METADATA +195 -0
- synth_ai-0.4.1.dist-info/RECORD +379 -0
- synth_ai-0.4.1.dist-info/entry_points.txt +2 -0
- synth_ai-0.4.1.dist-info/top_level.txt +1 -0
- examples/__init__.py +0 -16
- examples/analyze_semantic_words.sh +0 -17
- examples/crafter_debug_render.py +0 -186
- examples/qwen_coder/README.md +0 -102
- examples/qwen_coder/_shared.py +0 -113
- examples/qwen_coder/configs/coder_lora_30b.toml +0 -61
- examples/qwen_coder/configs/coder_lora_4b.toml +0 -57
- examples/qwen_coder/configs/coder_lora_small.toml +0 -58
- examples/qwen_coder/generate_dataset.py +0 -98
- examples/qwen_coder/infer_ft_smoke.py +0 -64
- examples/qwen_coder/infer_prod_proxy.py +0 -73
- examples/qwen_coder/infer_via_synth.py +0 -87
- examples/qwen_coder/scripts/infer_coder.sh +0 -18
- examples/qwen_coder/scripts/train_coder_30b.sh +0 -21
- examples/qwen_coder/sft_full_17b.py +0 -103
- examples/qwen_coder/sft_lora_30b.py +0 -110
- examples/qwen_coder/subset_jsonl.py +0 -38
- examples/qwen_coder/validate_jsonl.py +0 -59
- examples/rl/README.md +0 -169
- examples/rl/configs/eval_base_qwen.toml +0 -15
- examples/rl/configs/eval_rl_qwen.toml +0 -11
- examples/rl/configs/rl_from_base_qwen.toml +0 -35
- examples/rl/configs/rl_from_base_qwen17.toml +0 -74
- examples/rl/configs/rl_from_ft_qwen.toml +0 -35
- examples/rl/download_dataset.py +0 -80
- examples/rl/run_eval.py +0 -436
- examples/rl/run_rl_and_save.py +0 -111
- examples/rl/task_app/README.md +0 -22
- examples/rl/task_app/math_single_step.py +0 -991
- examples/rl/task_app/math_task_app.py +0 -115
- examples/run_crafter_demo.sh +0 -10
- examples/sft/README.md +0 -139
- examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -44
- examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -45
- examples/sft/evaluate.py +0 -117
- examples/sft/export_dataset.py +0 -117
- examples/sft/generate_traces.py +0 -162
- examples/swe/__init__.py +0 -12
- examples/swe/task_app/README.md +0 -105
- examples/swe/task_app/__init__.py +0 -2
- examples/swe/task_app/grpo_swe_mini.py +0 -571
- examples/swe/task_app/grpo_swe_mini_task_app.py +0 -136
- examples/swe/task_app/hosted/README.md +0 -173
- examples/swe/task_app/hosted/__init__.py +0 -5
- examples/swe/task_app/hosted/branching.py +0 -143
- examples/swe/task_app/hosted/environment_routes.py +0 -1289
- examples/swe/task_app/hosted/envs/__init__.py +0 -1
- examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -6
- examples/swe/task_app/hosted/envs/crafter/app.py +0 -1
- examples/swe/task_app/hosted/envs/crafter/environment.py +0 -522
- examples/swe/task_app/hosted/envs/crafter/policy.py +0 -478
- examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -108
- examples/swe/task_app/hosted/envs/crafter/shared.py +0 -305
- examples/swe/task_app/hosted/envs/crafter/tools.py +0 -47
- examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -8
- examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -1164
- examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -355
- examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -83
- examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -96
- examples/swe/task_app/hosted/hosted_app.py +0 -204
- examples/swe/task_app/hosted/inference/__init__.py +0 -5
- examples/swe/task_app/hosted/inference/openai_client.py +0 -618
- examples/swe/task_app/hosted/main.py +0 -100
- examples/swe/task_app/hosted/policy_routes.py +0 -1079
- examples/swe/task_app/hosted/registry.py +0 -195
- examples/swe/task_app/hosted/rollout.py +0 -1869
- examples/swe/task_app/hosted/storage/__init__.py +0 -5
- examples/swe/task_app/hosted/storage/volume.py +0 -211
- examples/swe/task_app/hosted/test_agents.py +0 -161
- examples/swe/task_app/hosted/test_service.py +0 -137
- examples/swe/task_app/hosted/utils.py +0 -62
- examples/vlm/README.md +0 -68
- examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -44
- examples/vlm/crafter_image_only_agent.py +0 -207
- examples/vlm/crafter_openai_vlm_agent.py +0 -277
- examples/vlm/filter_image_rows.py +0 -63
- examples/vlm/run_crafter_vlm_benchmark.py +0 -316
- examples/warming_up_to_rl/analyze_trace_db.py +0 -422
- examples/warming_up_to_rl/configs/crafter_fft.toml +0 -48
- examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -54
- examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -20
- examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -13
- examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -23
- examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -83
- examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -56
- examples/warming_up_to_rl/export_trace_sft.py +0 -723
- examples/warming_up_to_rl/groq_test.py +0 -95
- examples/warming_up_to_rl/manage_secrets.py +0 -131
- examples/warming_up_to_rl/readme.md +0 -179
- examples/warming_up_to_rl/run_eval.py +0 -510
- examples/warming_up_to_rl/run_fft_and_save.py +0 -380
- examples/warming_up_to_rl/run_local_rollout.py +0 -237
- examples/warming_up_to_rl/run_local_rollout_modal.py +0 -246
- examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -403
- examples/warming_up_to_rl/run_local_rollout_traced.py +0 -475
- examples/warming_up_to_rl/run_rl_and_save.py +0 -124
- examples/warming_up_to_rl/run_rollout_remote.py +0 -154
- examples/warming_up_to_rl/task_app/README.md +0 -42
- examples/warming_up_to_rl/task_app/grpo_crafter.py +0 -700
- examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py +0 -146
- examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md +0 -173
- examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py +0 -5
- examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py +0 -143
- examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py +0 -1226
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py +0 -1
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -6
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py +0 -1
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -522
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -478
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -108
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -305
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -47
- examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py +0 -204
- examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py +0 -5
- examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +0 -618
- examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py +0 -100
- examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +0 -1083
- examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py +0 -195
- examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py +0 -1869
- examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py +0 -5
- examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py +0 -211
- examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py +0 -161
- examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py +0 -137
- examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +0 -62
- synth/__init__.py +0 -14
- synth_ai/api/models/supported.py +0 -376
- synth_ai/api/train/__init__.py +0 -5
- synth_ai/api/train/builders.py +0 -296
- synth_ai/api/train/cli.py +0 -606
- synth_ai/api/train/config_finder.py +0 -228
- synth_ai/api/train/env_resolver.py +0 -347
- synth_ai/api/train/pollers.py +0 -75
- synth_ai/api/train/supported_algos.py +0 -139
- synth_ai/api/train/task_app.py +0 -195
- synth_ai/api/train/utils.py +0 -217
- synth_ai/cli/_modal_wrapper.py +0 -28
- synth_ai/cli/_typer_patch.py +0 -49
- synth_ai/cli/balance.py +0 -203
- synth_ai/cli/calc.py +0 -69
- synth_ai/cli/demo.py +0 -159
- synth_ai/cli/legacy_root_backup.py +0 -470
- synth_ai/cli/man.py +0 -106
- synth_ai/cli/recent.py +0 -127
- synth_ai/cli/rl_demo.py +0 -274
- synth_ai/cli/status.py +0 -133
- synth_ai/cli/task_apps.py +0 -2782
- synth_ai/cli/traces.py +0 -163
- synth_ai/cli/watch.py +0 -505
- synth_ai/config/base_url.py +0 -107
- synth_ai/core/experiment.py +0 -13
- synth_ai/core/system.py +0 -15
- synth_ai/demo_registry.py +0 -295
- synth_ai/demos/core/__init__.py +0 -1
- synth_ai/demos/core/cli.py +0 -1756
- synth_ai/demos/demo_task_apps/core.py +0 -440
- synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +0 -172
- synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -22
- synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -739
- synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -37
- synth_ai/environments/__init__.py +0 -31
- synth_ai/environments/environment/__init__.py +0 -1
- synth_ai/environments/environment/artifacts/__init__.py +0 -1
- synth_ai/environments/environment/artifacts/base.py +0 -52
- synth_ai/environments/environment/core.py +0 -67
- synth_ai/environments/environment/db/__init__.py +0 -1
- synth_ai/environments/environment/db/sqlite.py +0 -45
- synth_ai/environments/environment/registry.py +0 -233
- synth_ai/environments/environment/resources/sqlite.py +0 -45
- synth_ai/environments/environment/results.py +0 -1
- synth_ai/environments/environment/rewards/__init__.py +0 -1
- synth_ai/environments/environment/rewards/core.py +0 -29
- synth_ai/environments/environment/shared_engine.py +0 -26
- synth_ai/environments/environment/tools/__init__.py +0 -200
- synth_ai/environments/examples/__init__.py +0 -1
- synth_ai/environments/examples/bandit/__init__.py +0 -33
- synth_ai/environments/examples/bandit/engine.py +0 -302
- synth_ai/environments/examples/bandit/environment.py +0 -194
- synth_ai/environments/examples/bandit/taskset.py +0 -200
- synth_ai/environments/examples/crafter_classic/__init__.py +0 -8
- synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -250
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -59
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -152
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -24
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -1194
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -56
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -32
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -384
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -53
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -178
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -222
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -183
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -210
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -206
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -49
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -64
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -88
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -77
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -324
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -362
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -49
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -332
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -97
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -217
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -87
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -88
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -195
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -400
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -195
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -56
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/run_rollouts_for_models_and_compare_v3.py +0 -858
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -52
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -874
- synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -1412
- synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -216
- synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -296
- synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -58
- synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -464
- synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -152
- synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -51
- synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -1412
- synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -112
- synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -203
- synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -305
- synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -126
- synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -94
- synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -142
- synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -26
- synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -984
- synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -724
- synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -386
- synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -205
- synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -150
- synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -283
- synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -280
- synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -456
- synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -166
- synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -102
- synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -128
- synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -655
- synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -202
- synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -166
- synth_ai/environments/examples/crafter_classic/config_logging.py +0 -111
- synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- synth_ai/environments/examples/crafter_classic/engine.py +0 -579
- synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -64
- synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -6
- synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -75
- synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -267
- synth_ai/environments/examples/crafter_classic/environment.py +0 -479
- synth_ai/environments/examples/crafter_classic/taskset.py +0 -233
- synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -228
- synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -299
- synth_ai/environments/examples/crafter_custom/__init__.py +0 -4
- synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -1
- synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -202
- synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -7
- synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -182
- synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -8
- synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -269
- synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -262
- synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -417
- synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -187
- synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -118
- synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -373
- synth_ai/environments/examples/crafter_custom/environment.py +0 -312
- synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -159
- synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -158
- synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -71
- synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -105
- synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -119
- synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -52
- synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -305
- synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -156
- synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -281
- synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -25
- synth_ai/environments/examples/enron/engine.py +0 -295
- synth_ai/environments/examples/enron/environment.py +0 -166
- synth_ai/environments/examples/enron/taskset.py +0 -112
- synth_ai/environments/examples/enron/units/keyword_stats.py +0 -112
- synth_ai/environments/examples/minigrid/__init__.py +0 -48
- synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -1188
- synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -48
- synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -562
- synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -221
- synth_ai/environments/examples/minigrid/engine.py +0 -589
- synth_ai/environments/examples/minigrid/environment.py +0 -274
- synth_ai/environments/examples/minigrid/environment_mapping.py +0 -242
- synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -417
- synth_ai/environments/examples/minigrid/taskset.py +0 -583
- synth_ai/environments/examples/nethack/__init__.py +0 -7
- synth_ai/environments/examples/nethack/achievements.py +0 -337
- synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -981
- synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -74
- synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -831
- synth_ai/environments/examples/nethack/engine.py +0 -739
- synth_ai/environments/examples/nethack/environment.py +0 -256
- synth_ai/environments/examples/nethack/helpers/__init__.py +0 -41
- synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -301
- synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -402
- synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -433
- synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -200
- synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -269
- synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -308
- synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -431
- synth_ai/environments/examples/nethack/taskset.py +0 -323
- synth_ai/environments/examples/red/__init__.py +0 -7
- synth_ai/environments/examples/red/agent_demos/__init__.py +0 -1
- synth_ai/environments/examples/red/config_logging.py +0 -110
- synth_ai/environments/examples/red/engine.py +0 -694
- synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -1
- synth_ai/environments/examples/red/engine_helpers/memory_map.py +0 -28
- synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -276
- synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -142
- synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -57
- synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -284
- synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -150
- synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -138
- synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -57
- synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -331
- synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -121
- synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -559
- synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -313
- synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -148
- synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -247
- synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -368
- synth_ai/environments/examples/red/engine_helpers/state_extraction.py +0 -140
- synth_ai/environments/examples/red/environment.py +0 -238
- synth_ai/environments/examples/red/taskset.py +0 -79
- synth_ai/environments/examples/red/units/__init__.py +0 -1
- synth_ai/environments/examples/sokoban/__init__.py +0 -1
- synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -899
- synth_ai/environments/examples/sokoban/engine.py +0 -678
- synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -1
- synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -657
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -18
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -3
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -131
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -370
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -332
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -306
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -67
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -115
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -123
- synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -394
- synth_ai/environments/examples/sokoban/environment.py +0 -229
- synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -440
- synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -312
- synth_ai/environments/examples/sokoban/taskset.py +0 -428
- synth_ai/environments/examples/tictactoe/__init__.py +0 -1
- synth_ai/environments/examples/tictactoe/engine.py +0 -368
- synth_ai/environments/examples/tictactoe/environment.py +0 -240
- synth_ai/environments/examples/tictactoe/taskset.py +0 -215
- synth_ai/environments/examples/verilog/__init__.py +0 -10
- synth_ai/environments/examples/verilog/engine.py +0 -329
- synth_ai/environments/examples/verilog/environment.py +0 -350
- synth_ai/environments/examples/verilog/taskset.py +0 -420
- synth_ai/environments/examples/wordle/__init__.py +0 -29
- synth_ai/environments/examples/wordle/engine.py +0 -398
- synth_ai/environments/examples/wordle/environment.py +0 -159
- synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -75
- synth_ai/environments/examples/wordle/taskset.py +0 -230
- synth_ai/environments/reproducibility/core.py +0 -42
- synth_ai/environments/reproducibility/helpers.py +0 -0
- synth_ai/environments/reproducibility/tree.py +0 -363
- synth_ai/environments/service/app.py +0 -97
- synth_ai/environments/service/core_routes.py +0 -1021
- synth_ai/environments/service/external_registry.py +0 -56
- synth_ai/environments/service/registry.py +0 -9
- synth_ai/environments/stateful/__init__.py +0 -1
- synth_ai/environments/stateful/core.py +0 -163
- synth_ai/environments/stateful/engine.py +0 -21
- synth_ai/environments/stateful/state.py +0 -7
- synth_ai/environments/tasks/api.py +0 -19
- synth_ai/environments/tasks/core.py +0 -81
- synth_ai/environments/tasks/filters.py +0 -40
- synth_ai/environments/tasks/utils.py +0 -90
- synth_ai/environments/v0_observability/history.py +0 -3
- synth_ai/environments/v0_observability/log.py +0 -2
- synth_ai/evals/base.py +0 -13
- synth_ai/handshake.py +0 -109
- synth_ai/http.py +0 -26
- synth_ai/http_client.py +0 -136
- synth_ai/inference/__init__.py +0 -5
- synth_ai/inference/client.py +0 -34
- synth_ai/jobs/client.py +0 -271
- synth_ai/learning/__init__.py +0 -59
- synth_ai/learning/client.py +0 -241
- synth_ai/learning/ft_client.py +0 -7
- synth_ai/learning/health.py +0 -49
- synth_ai/learning/jobs.py +0 -201
- synth_ai/learning/rl/client.py +0 -267
- synth_ai/learning/rl/contracts.py +0 -27
- synth_ai/learning/rl/env_keys.py +0 -166
- synth_ai/learning/rl/secrets.py +0 -13
- synth_ai/learning/sft/client.py +0 -68
- synth_ai/learning/sft/config.py +0 -270
- synth_ai/learning/sft/data.py +0 -295
- synth_ai/learning/validators.py +0 -49
- synth_ai/lm/__init__.py +0 -25
- synth_ai/main.py +0 -6
- synth_ai/task/__init__.py +0 -102
- synth_ai/task/apps/__init__.py +0 -128
- synth_ai/task/contracts.py +0 -137
- synth_ai/task/datasets.py +0 -108
- synth_ai/task/proxy.py +0 -259
- synth_ai/task/server.py +0 -424
- synth_ai/task/tracing_utils.py +0 -84
- synth_ai/task/validators.py +0 -11
- synth_ai/tracing_v3/__init__.py +0 -97
- synth_ai/tracing_v3/config.py +0 -84
- synth_ai/tracing_v3/db_config.py +0 -194
- synth_ai/tracing_v3/decorators.py +0 -369
- synth_ai/tracing_v3/examples/basic_usage.py +0 -189
- synth_ai/tracing_v3/llm_call_record_helpers.py +0 -337
- synth_ai/tracing_v3/migration_helper.py +0 -120
- synth_ai/tracing_v3/replica_sync.py +0 -258
- synth_ai/tracing_v3/session_tracer.py +0 -530
- synth_ai/tracing_v3/storage/base.py +0 -210
- synth_ai/tracing_v3/storage/config.py +0 -75
- synth_ai/tracing_v3/storage/factory.py +0 -39
- synth_ai/tracing_v3/storage/utils.py +0 -204
- synth_ai/tracing_v3/turso/daemon.py +0 -149
- synth_ai/tracing_v3/turso/models.py +0 -469
- synth_ai/tracing_v3/turso/native_manager.py +0 -1173
- synth_ai/tracing_v3/utils.py +0 -108
- synth_ai/v0/api/__init__.py +0 -8
- synth_ai/v0/api/models/__init__.py +0 -8
- synth_ai/v0/api/models/supported.py +0 -8
- synth_ai/v0/config/__init__.py +0 -15
- synth_ai/v0/config/base_url.py +0 -12
- synth_ai/v0/lm/__init__.py +0 -51
- synth_ai/v0/lm/caching/constants.py +0 -6
- synth_ai/v0/lm/caching/dbs.py +0 -0
- synth_ai/v0/lm/caching/ephemeral.py +0 -100
- synth_ai/v0/lm/caching/handler.py +0 -137
- synth_ai/v0/lm/caching/initialize.py +0 -11
- synth_ai/v0/lm/caching/persistent.py +0 -114
- synth_ai/v0/lm/config.py +0 -115
- synth_ai/v0/lm/constants.py +0 -32
- synth_ai/v0/lm/core/__init__.py +0 -8
- synth_ai/v0/lm/core/all.py +0 -73
- synth_ai/v0/lm/core/exceptions.py +0 -5
- synth_ai/v0/lm/core/main.py +0 -331
- synth_ai/v0/lm/core/main_v3.py +0 -594
- synth_ai/v0/lm/core/synth_models.py +0 -35
- synth_ai/v0/lm/core/vendor_clients.py +0 -190
- synth_ai/v0/lm/cost/__init__.py +0 -0
- synth_ai/v0/lm/cost/monitor.py +0 -1
- synth_ai/v0/lm/cost/statefulness.py +0 -1
- synth_ai/v0/lm/injection.py +0 -80
- synth_ai/v0/lm/overrides.py +0 -206
- synth_ai/v0/lm/provider_support/__init__.py +0 -8
- synth_ai/v0/lm/provider_support/anthropic.py +0 -972
- synth_ai/v0/lm/provider_support/openai.py +0 -1139
- synth_ai/v0/lm/provider_support/suppress_logging.py +0 -31
- synth_ai/v0/lm/structured_outputs/__init__.py +0 -0
- synth_ai/v0/lm/structured_outputs/handler.py +0 -440
- synth_ai/v0/lm/structured_outputs/inject.py +0 -297
- synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -185
- synth_ai/v0/lm/tools/__init__.py +0 -3
- synth_ai/v0/lm/tools/base.py +0 -172
- synth_ai/v0/lm/unified_interface.py +0 -202
- synth_ai/v0/lm/vendors/__init__.py +0 -0
- synth_ai/v0/lm/vendors/base.py +0 -81
- synth_ai/v0/lm/vendors/core/__init__.py +0 -0
- synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -387
- synth_ai/v0/lm/vendors/core/gemini_api.py +0 -292
- synth_ai/v0/lm/vendors/core/mistral_api.py +0 -322
- synth_ai/v0/lm/vendors/core/openai_api.py +0 -227
- synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
- synth_ai/v0/lm/vendors/local/__init__.py +0 -0
- synth_ai/v0/lm/vendors/local/ollama.py +0 -0
- synth_ai/v0/lm/vendors/openai_standard.py +0 -782
- synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -259
- synth_ai/v0/lm/vendors/retries.py +0 -22
- synth_ai/v0/lm/vendors/supported/__init__.py +0 -0
- synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -415
- synth_ai/v0/lm/vendors/supported/deepseek.py +0 -69
- synth_ai/v0/lm/vendors/supported/grok.py +0 -75
- synth_ai/v0/lm/vendors/supported/groq.py +0 -16
- synth_ai/v0/lm/vendors/supported/ollama.py +0 -15
- synth_ai/v0/lm/vendors/supported/openrouter.py +0 -74
- synth_ai/v0/lm/vendors/supported/together.py +0 -11
- synth_ai/v0/lm/vendors/synth_client.py +0 -835
- synth_ai/v0/lm/warmup.py +0 -186
- synth_ai/v0/tracing/__init__.py +0 -0
- synth_ai/v0/tracing/abstractions.py +0 -224
- synth_ai/v0/tracing/base_client.py +0 -91
- synth_ai/v0/tracing/client_manager.py +0 -131
- synth_ai/v0/tracing/config.py +0 -142
- synth_ai/v0/tracing/context.py +0 -146
- synth_ai/v0/tracing/decorators.py +0 -682
- synth_ai/v0/tracing/events/__init__.py +0 -0
- synth_ai/v0/tracing/events/manage.py +0 -147
- synth_ai/v0/tracing/events/scope.py +0 -86
- synth_ai/v0/tracing/events/store.py +0 -228
- synth_ai/v0/tracing/immediate_client.py +0 -151
- synth_ai/v0/tracing/local.py +0 -18
- synth_ai/v0/tracing/log_client_base.py +0 -73
- synth_ai/v0/tracing/retry_queue.py +0 -186
- synth_ai/v0/tracing/trackers.py +0 -515
- synth_ai/v0/tracing/upload.py +0 -409
- synth_ai/v0/tracing/utils.py +0 -9
- synth_ai/v0/tracing_v1/__init__.py +0 -16
- synth_ai/v0/tracing_v1/abstractions.py +0 -224
- synth_ai/v0/tracing_v1/base_client.py +0 -91
- synth_ai/v0/tracing_v1/client_manager.py +0 -131
- synth_ai/v0/tracing_v1/config.py +0 -142
- synth_ai/v0/tracing_v1/context.py +0 -146
- synth_ai/v0/tracing_v1/decorators.py +0 -703
- synth_ai/v0/tracing_v1/events/__init__.py +0 -0
- synth_ai/v0/tracing_v1/events/manage.py +0 -147
- synth_ai/v0/tracing_v1/events/scope.py +0 -86
- synth_ai/v0/tracing_v1/events/store.py +0 -228
- synth_ai/v0/tracing_v1/immediate_client.py +0 -151
- synth_ai/v0/tracing_v1/local.py +0 -18
- synth_ai/v0/tracing_v1/log_client_base.py +0 -73
- synth_ai/v0/tracing_v1/retry_queue.py +0 -186
- synth_ai/v0/tracing_v1/trackers.py +0 -515
- synth_ai/v0/tracing_v1/upload.py +0 -527
- synth_ai/v0/tracing_v1/utils.py +0 -9
- synth_ai/v0/tracing_v3/__init__.py +0 -10
- synth_ai/v0/tracing_v3/abstractions.py +0 -3
- synth_ai/v0/tracing_v3/decorators.py +0 -3
- synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -3
- synth_ai/v0/tracing_v3/session_tracer.py +0 -3
- synth_ai-0.2.9.dev11.dist-info/METADATA +0 -191
- synth_ai-0.2.9.dev11.dist-info/RECORD +0 -571
- synth_ai-0.2.9.dev11.dist-info/entry_points.txt +0 -3
- synth_ai-0.2.9.dev11.dist-info/top_level.txt +0 -3
- /synth_ai/{demos/demo_task_apps → cli/demo_apps}/crafter/__init__.py +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/__init__.py +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/__init__.py +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/_common.py +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/app.py +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/config.toml +0 -0
- /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/deploy_modal.py +0 -0
- /synth_ai/{v0/lm/caching → core/apps}/__init__.py +0 -0
- /synth_ai/{tracing_v3 → core/tracing_v3}/abstractions.py +0 -0
- /synth_ai/{tracing_v3 → core/tracing_v3}/hooks.py +0 -0
- /synth_ai/{tracing_v3 → core/tracing_v3}/lm_call_record_abstractions.py +0 -0
- /synth_ai/{tracing_v3 → core/tracing_v3}/storage/__init__.py +0 -0
- /synth_ai/{tracing_v3 → core/tracing_v3}/storage/exceptions.py +0 -0
- /synth_ai/{tracing_v3 → core/tracing_v3}/storage/types.py +0 -0
- /synth_ai/{compound/cais.py → py.typed} +0 -0
- /synth_ai/{learning → sdk/learning}/algorithms.py +0 -0
- /synth_ai/{learning → sdk/learning}/config.py +0 -0
- /synth_ai/{learning → sdk/learning}/constants.py +0 -0
- /synth_ai/{learning → sdk/learning}/core.py +0 -0
- /synth_ai/{learning → sdk/learning}/gateway.py +0 -0
- /synth_ai/{learning → sdk/learning}/rl/__init__.py +0 -0
- /synth_ai/{learning → sdk/learning}/rl/config.py +0 -0
- /synth_ai/{learning → sdk/learning}/rl_client.py +0 -0
- /synth_ai/{learning → sdk/learning}/sft/__init__.py +0 -0
- /synth_ai/{learning → sdk/learning}/sse.py +0 -0
- /synth_ai/{task → sdk/task}/auth.py +0 -0
- /synth_ai/{task → sdk/task}/client.py +0 -0
- /synth_ai/{task → sdk/task}/errors.py +0 -0
- /synth_ai/{task → sdk/task}/health.py +0 -0
- /synth_ai/{task → sdk/task}/json.py +0 -0
- /synth_ai/{task → sdk/task}/rubrics.py +0 -0
- /synth_ai/{task → sdk/task}/vendors.py +0 -0
- {synth_ai-0.2.9.dev11.dist-info → synth_ai-0.4.1.dist-info}/WHEEL +0 -0
- {synth_ai-0.2.9.dev11.dist-info → synth_ai-0.4.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,571 +0,0 @@
|
|
|
1
|
-
examples/__init__.py,sha256=S1h7WGBIgk2CmmSIqsE4nkhxv2XTniHSBUqKETgSNQI,543
|
|
2
|
-
examples/analyze_semantic_words.sh,sha256=z-3qJBAlQuMrfRzoszofle_2b3Fy79rymvEAcoBQGXU,652
|
|
3
|
-
examples/crafter_debug_render.py,sha256=McPkX8z6ffANOfoR0Xw26h81HNHtT0F5y4bzUhwYonQ,6261
|
|
4
|
-
examples/run_crafter_demo.sh,sha256=7FNvooSgq-ezccGy5j_h_uRXObiQtcnybPcTwaVGDpo,392
|
|
5
|
-
examples/qwen_coder/README.md,sha256=xhoGKdIlRt8fO3F6HTpq6rzw3bs4ezDsGcRBNCz90Fs,3145
|
|
6
|
-
examples/qwen_coder/_shared.py,sha256=oGUmx7gKkgkmToXHXAPocG72YKO9WGRjguVhmX3XE7s,3557
|
|
7
|
-
examples/qwen_coder/generate_dataset.py,sha256=bfa1LMvV7jd2GmNkFE5rn2K1SETNEzMjv7SXD0C24K0,4484
|
|
8
|
-
examples/qwen_coder/infer_ft_smoke.py,sha256=BZWOauxH2czi7y5xsqHVblghPVxvHnXx-WtzPw6USnM,2023
|
|
9
|
-
examples/qwen_coder/infer_prod_proxy.py,sha256=43yr4pJsUX0JjfKNKIJ0JHDs4il0WApTfyZ0CTzAdUA,2020
|
|
10
|
-
examples/qwen_coder/infer_via_synth.py,sha256=g8nbPJMANyzW-0obQonadb7LQpjJHAYxlgBSvZPSeAo,2801
|
|
11
|
-
examples/qwen_coder/sft_full_17b.py,sha256=StXQRdSFxcfDOHvJq9alvcFlv6IVaJ20KwmQkQcjGYk,3451
|
|
12
|
-
examples/qwen_coder/sft_lora_30b.py,sha256=PG2-GKAghRc4QC8coGJOplF559SqfzAA-NlNy7dJ_q8,3497
|
|
13
|
-
examples/qwen_coder/subset_jsonl.py,sha256=7mBbDttPKGhmP7yS_8xIatKYIgHHVJGh-uSIE5RexME,1005
|
|
14
|
-
examples/qwen_coder/validate_jsonl.py,sha256=2TFeu1vVbYCrIwquqwg10Ot7Axs0bOMbfbQcmjyBgCE,1783
|
|
15
|
-
examples/qwen_coder/configs/coder_lora_30b.toml,sha256=q73QR6sn0F60IZE27G_YQlQxrGEQSj8qr1bfURAsK3c,1162
|
|
16
|
-
examples/qwen_coder/configs/coder_lora_4b.toml,sha256=DnOVEnh0-iVPJVeRmB8VZn73Dn0dPq-x5zeXNe1dW_o,1081
|
|
17
|
-
examples/qwen_coder/configs/coder_lora_small.toml,sha256=viH7c1vAc60_VcpE7AcjjRZtv9HdHxwpPqI2wqirmzc,1076
|
|
18
|
-
examples/qwen_coder/scripts/infer_coder.sh,sha256=S2eFIfgkQYUX9aQQikG0DpDOPkj4v7UD4otrupAMHtA,415
|
|
19
|
-
examples/qwen_coder/scripts/train_coder_30b.sh,sha256=2Fdu2FfJmFPiV3s6fTs77xi8vyewFZyuo0az_PUplqI,497
|
|
20
|
-
examples/rl/README.md,sha256=qzv-URBhEr3r4ipEyh-mP9CiCIz_KbckZWlfXdWbafA,6560
|
|
21
|
-
examples/rl/download_dataset.py,sha256=UWEwa1Qn_xyODFyMEV6ZhEXSUfDK-dVV_OSHSS3MjJY,2650
|
|
22
|
-
examples/rl/run_eval.py,sha256=MIOZMQ4zRf8lhLigC_VUU1Wikw3GRnio3pxgQYZNt_4,14951
|
|
23
|
-
examples/rl/run_rl_and_save.py,sha256=KfdhOYBOFIM_jElJNaXtebbYQlkaP2NpUzmIkgDAr1Y,3314
|
|
24
|
-
examples/rl/configs/eval_base_qwen.toml,sha256=qst95ZUerBx_kS2mqBwsg9QEDEGFhNw12Ibpd9IJOI0,337
|
|
25
|
-
examples/rl/configs/eval_rl_qwen.toml,sha256=o07ZvAxjj_ejj3zbjESmtpIOh6QqkwpTD2ZUL9Lzx5A,247
|
|
26
|
-
examples/rl/configs/rl_from_base_qwen.toml,sha256=KDDtpvVikHZCcyUKYtgWq9XAfAEY5vRADPpcxpkdVsg,605
|
|
27
|
-
examples/rl/configs/rl_from_base_qwen17.toml,sha256=8kAQ9GL0rVDECKPYaN8MWuDbLldwr76c2d8nyHwr784,1360
|
|
28
|
-
examples/rl/configs/rl_from_ft_qwen.toml,sha256=7s5HK_YM7zVnvjJavvfai8Nc_eUx_70cgHeWN19vXXM,638
|
|
29
|
-
examples/rl/task_app/README.md,sha256=oHfcMF9V_CPLnGbrarTRRIQpQ1wqV1zL74KWUZtcKwI,802
|
|
30
|
-
examples/rl/task_app/math_single_step.py,sha256=DhmC2hNf8jBPCrEqNhRZvVWSiXSnKZsU8sXmAX5WW48,34568
|
|
31
|
-
examples/rl/task_app/math_task_app.py,sha256=JTbdpqIBGgJ-ILMLxgH88ewRHivgtIeIibtGT4t4nac,4284
|
|
32
|
-
examples/sft/README.md,sha256=oC5cVp3aVwRLblm5WgSRQQtHE_ugKB2LwVn9IhjM-xA,6050
|
|
33
|
-
examples/sft/evaluate.py,sha256=COBozO2tn8XUC2IegafAAsZiWgJ4OjdT7KEyLsW8JV8,3948
|
|
34
|
-
examples/sft/export_dataset.py,sha256=fveTXUPActPQYq8hUP1hWGfrLzGgy5Zkbkt4vKFKjBs,4717
|
|
35
|
-
examples/sft/generate_traces.py,sha256=dCAHPFXsdXybhxZn_Z3V6okiz0UtueVkEizeDPkzYjQ,5457
|
|
36
|
-
examples/sft/configs/crafter_fft_qwen0p6b.toml,sha256=MXMXN64K2b-IOYX55P0M87Lv1dOrAXcfk3pqJ2r93Cw,891
|
|
37
|
-
examples/sft/configs/crafter_lora_qwen0p6b.toml,sha256=Mz9L-vWChHrGpPBHxPzaxvczCH7hje8gEltifK3bvmk,915
|
|
38
|
-
examples/swe/__init__.py,sha256=kDIi3dx6u2pTq0Sn0U2S5FTWnIAY8RiWrH_Jr9BX82U,337
|
|
39
|
-
examples/swe/task_app/README.md,sha256=Ln9Ul_zDqL-aoXifuVnoB0nhb8kvdFFLrsS16zRbttM,4184
|
|
40
|
-
examples/swe/task_app/__init__.py,sha256=UHMG4o470kSqE2cM6gUv91nEIKlEvg12N1z97i5RPhE,60
|
|
41
|
-
examples/swe/task_app/grpo_swe_mini.py,sha256=SrBtkTkJRDOzvIYf29vqAgT-fePzBAFD-Ka2dB2de6U,20577
|
|
42
|
-
examples/swe/task_app/grpo_swe_mini_task_app.py,sha256=gC1MlBJQ0Y5GAL5b_ALtQ-CbKBTmXKdl4NTug5FqtrE,4780
|
|
43
|
-
examples/swe/task_app/hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
|
|
44
|
-
examples/swe/task_app/hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
|
|
45
|
-
examples/swe/task_app/hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5vw2Robhww8Q8,5318
|
|
46
|
-
examples/swe/task_app/hosted/environment_routes.py,sha256=BYNBg9plzmGlR_odUzrFrYgLN3jlTPHYHahi1YWkd1w,52041
|
|
47
|
-
examples/swe/task_app/hosted/hosted_app.py,sha256=hr1jblOUsx0bakgy6zXoEHROeUDoVPY1I66aNyyRQDg,7547
|
|
48
|
-
examples/swe/task_app/hosted/main.py,sha256=_F1CAEYiRqPYjTzajOJtX0YFKt4DQe3ioLmCPTMwz0c,2464
|
|
49
|
-
examples/swe/task_app/hosted/policy_routes.py,sha256=V-pgQRfeDUQH7VlSHroy9t5IO-iTOkcZLFHnjb8V2H8,49394
|
|
50
|
-
examples/swe/task_app/hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
|
|
51
|
-
examples/swe/task_app/hosted/rollout.py,sha256=g-CCh0HaNsUabzbQEUB4woCl0JcbzKUDe_LXXY8Jksw,78850
|
|
52
|
-
examples/swe/task_app/hosted/test_agents.py,sha256=Vbxm8KJ5x4TbMpVGAzLkZhDCfZcOpA0t6LyUbKKi-Dw,5580
|
|
53
|
-
examples/swe/task_app/hosted/test_service.py,sha256=jFEtE3UqVCq552MSPliS2eO0pDbAS3tSDRJL0A-edTA,5111
|
|
54
|
-
examples/swe/task_app/hosted/utils.py,sha256=8Rnp0NTKTD_kPXg8zfpIy_we2hfk2agKPUVH_aqMsE0,1994
|
|
55
|
-
examples/swe/task_app/hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
|
|
56
|
-
examples/swe/task_app/hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
|
|
57
|
-
examples/swe/task_app/hosted/envs/crafter/app.py,sha256=QZ9kT8Q21NivxQJ_PzWN1roQUDMZDvWLJMxb-VSSG3k,19
|
|
58
|
-
examples/swe/task_app/hosted/envs/crafter/environment.py,sha256=Qcf0ZX8p0YRjlLuRxvkNgn7WLeWbLWy1FbibWuEo83Y,23103
|
|
59
|
-
examples/swe/task_app/hosted/envs/crafter/policy.py,sha256=FM_g1Z-smCsvF5QqdrE8ts7hJCPjt9BE3-6XEgXMgsw,20050
|
|
60
|
-
examples/swe/task_app/hosted/envs/crafter/react_agent.py,sha256=nZF_ZwuPbbDrnyTynak_BLp0lclHJEBAXTd8CQehOYw,6432
|
|
61
|
-
examples/swe/task_app/hosted/envs/crafter/shared.py,sha256=NfhgJPkzjhA-bLDF6zYP57Cs1pnpqteJqzO3lsFOdMk,10074
|
|
62
|
-
examples/swe/task_app/hosted/envs/crafter/tools.py,sha256=zmTxJ8IpTod7DRDCQhkLDw7KgFCeAVFbf4cQpuOgSgI,1788
|
|
63
|
-
examples/swe/task_app/hosted/envs/mini_swe/__init__.py,sha256=aZ8x1qd-JFLd2U-bOClD3ankSoFYCGkYw_YBDMSJGBc,241
|
|
64
|
-
examples/swe/task_app/hosted/envs/mini_swe/environment.py,sha256=q0QpHp-KSGBu27ud_EohxM2KArXWwfIZhhvtPnih460,45066
|
|
65
|
-
examples/swe/task_app/hosted/envs/mini_swe/policy.py,sha256=yYP7X5Y41lAdtGrQoPowqh4HtTiw1nSa-vcLe40fOi8,14129
|
|
66
|
-
examples/swe/task_app/hosted/envs/mini_swe/shared.py,sha256=C1baeM0ZQY4OJnWoKOduEljOMj4HYdSJS6r5CpUnEDY,2685
|
|
67
|
-
examples/swe/task_app/hosted/envs/mini_swe/tools.py,sha256=A1ZG4ovsLvlQVkVZ_KCyDWOfRpbIQW8-wAzDSUbesH8,3079
|
|
68
|
-
examples/swe/task_app/hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
|
|
69
|
-
examples/swe/task_app/hosted/inference/openai_client.py,sha256=rXEnoZA04IWnEVNfORBaffELa4ub0dqes4sMAc3Nw_Y,27793
|
|
70
|
-
examples/swe/task_app/hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
|
|
71
|
-
examples/swe/task_app/hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
|
|
72
|
-
examples/vlm/README.md,sha256=4I1QGhGba9MDeiLGIFhAs6Muhb3yoP5uf_tMlzza_q0,2630
|
|
73
|
-
examples/vlm/crafter_image_only_agent.py,sha256=wvb514e8POHoL7NF3BfSRDS4yB7Wz1EMLbsvL83SHk0,6739
|
|
74
|
-
examples/vlm/crafter_openai_vlm_agent.py,sha256=JCs9v7v0BXB-7BcLb_Doz4tMZxV1it-686P9-7tA2Mc,9555
|
|
75
|
-
examples/vlm/filter_image_rows.py,sha256=VGEYwWY9vXdBeEJYUrXEO0yzEp_UOUxrvwXFE292ves,2023
|
|
76
|
-
examples/vlm/run_crafter_vlm_benchmark.py,sha256=HtKQOEWA5uZpniOFiW2MHpc3_XBlFdLRENCqMsplHKI,11280
|
|
77
|
-
examples/vlm/configs/crafter_vlm_gpt4o.toml,sha256=CFQ1PD1E2ZEvBRbVeuFZ36MfN9tnx6FstnLai-XYAj0,893
|
|
78
|
-
examples/warming_up_to_rl/analyze_trace_db.py,sha256=wJPQDbma2ctoisM73ue5dRQmrJVZFIcDOwI6j1u76lA,14424
|
|
79
|
-
examples/warming_up_to_rl/export_trace_sft.py,sha256=qcVOgZduYYImDv2xs-h_CoyMpX_U_hr3DgsYfDGFDIE,25450
|
|
80
|
-
examples/warming_up_to_rl/groq_test.py,sha256=vffVVTwQNypkqppxMLy17ySafoD2WKIK-Qf9w13lbyE,3138
|
|
81
|
-
examples/warming_up_to_rl/manage_secrets.py,sha256=qLe_zglOLCd0dxPPCyQQ9CnhGkvtLOkBrZ0Xd4mmnIw,4372
|
|
82
|
-
examples/warming_up_to_rl/readme.md,sha256=u2KX7grlDnOMRRrC3vzTej1K0OOmTdx5LHs2opTfLt4,6431
|
|
83
|
-
examples/warming_up_to_rl/run_eval.py,sha256=iYoblB_3lQN7P_U4dEiSobPeVHCt5st65GHYMLmJu-Y,19925
|
|
84
|
-
examples/warming_up_to_rl/run_fft_and_save.py,sha256=RVbMuHUB0F7h_CO26hvAhEx5W3fqxVvokb4VlOiR6RQ,15095
|
|
85
|
-
examples/warming_up_to_rl/run_local_rollout.py,sha256=uRfCR1E066fF6cQTajllb0Dzv0sU4iT6QOitZ_jRVHw,8783
|
|
86
|
-
examples/warming_up_to_rl/run_local_rollout_modal.py,sha256=oGHqSCNUSAluJFlVkOKItONWh0wUu4UxRXmqnkD37E8,8948
|
|
87
|
-
examples/warming_up_to_rl/run_local_rollout_parallel.py,sha256=AgQmKYbBIs7fbKii4orlQ8_fudw8gEBsDTyZHFp_6UQ,14387
|
|
88
|
-
examples/warming_up_to_rl/run_local_rollout_traced.py,sha256=0bH4VIrGqv0p4nSRIjikdoNssTV4ZEc_KFdRk9Ug4GQ,16838
|
|
89
|
-
examples/warming_up_to_rl/run_rl_and_save.py,sha256=CFHP9MlgdXrQ6Q4kYERi35tEONaDPCiJvWaeDT1nwOY,3897
|
|
90
|
-
examples/warming_up_to_rl/run_rollout_remote.py,sha256=OxRel6_9JP90Hipr2JsjEpUVbP7x2Rv35GwMf37VU1g,5125
|
|
91
|
-
examples/warming_up_to_rl/configs/crafter_fft.toml,sha256=Hbp2tVhaGxRAip1vwhID73rCIO6bi_yI-gUen-oylcA,1137
|
|
92
|
-
examples/warming_up_to_rl/configs/crafter_fft_4b.toml,sha256=q_cnU3P-eGG_VFOepw9IA1U-m7L-uJH37EUFR3mNWBI,1358
|
|
93
|
-
examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml,sha256=YP4HLWDh6iIvw6McPXw5kK1RUFQF4dvKP4yH5bHT5nI,678
|
|
94
|
-
examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml,sha256=zQi31JYa83kW-ceEqDZi-7oajsCmEPrlJR57zN5ygO8,340
|
|
95
|
-
examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml,sha256=6eeU1GVvK1cYSEuGXk-AhOwJLgRcf74CTOI5XlqNYBc,817
|
|
96
|
-
examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml,sha256=MrcjPlR-5s7XayBXl087QcGuR6484HcdSgS9yYUE5uo,1868
|
|
97
|
-
examples/warming_up_to_rl/configs/rl_from_ft.toml,sha256=d1cIoLeC80NgOjn0Wohk0a5IXE_ImHVgMsxWPkyAFKQ,1381
|
|
98
|
-
examples/warming_up_to_rl/task_app/README.md,sha256=xjt_l7BGJmAMwanKoLAhoy2cCVav_Hh5Z4iKGLUNz3E,1664
|
|
99
|
-
examples/warming_up_to_rl/task_app/grpo_crafter.py,sha256=4GrgnVL0ifhJ12Q10tiyr3OTb2hafHBgCd5MUYNcfmY,25067
|
|
100
|
-
examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py,sha256=dw0OCq1guI8rH6yA5twSRUmFztbgl2SNwMW_7sOxYUA,5405
|
|
101
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
|
|
102
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
|
|
103
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5vw2Robhww8Q8,5318
|
|
104
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py,sha256=Y0iaLQ1nUkxBCD4aY39J4XEt66J-N4_J0uPj492i75g,49640
|
|
105
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py,sha256=hr1jblOUsx0bakgy6zXoEHROeUDoVPY1I66aNyyRQDg,7547
|
|
106
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py,sha256=-GL__EH3Xr47vp3aD30XNXNrFPOj1bRLpOYQ-yvfwIU,2481
|
|
107
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py,sha256=6Wq62ni5qnW2fXuEuoGD0cMKAxjtNve_oG378Aqz1as,48568
|
|
108
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
|
|
109
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py,sha256=g-CCh0HaNsUabzbQEUB4woCl0JcbzKUDe_LXXY8Jksw,78850
|
|
110
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py,sha256=-TDfCs-LSlRgyWHGvO_6YAmjauwi1x4618D8CA9d8aA,5600
|
|
111
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py,sha256=jFEtE3UqVCq552MSPliS2eO0pDbAS3tSDRJL0A-edTA,5111
|
|
112
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py,sha256=8Rnp0NTKTD_kPXg8zfpIy_we2hfk2agKPUVH_aqMsE0,1994
|
|
113
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
|
|
114
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
|
|
115
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py,sha256=QZ9kT8Q21NivxQJ_PzWN1roQUDMZDvWLJMxb-VSSG3k,19
|
|
116
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py,sha256=Qcf0ZX8p0YRjlLuRxvkNgn7WLeWbLWy1FbibWuEo83Y,23103
|
|
117
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py,sha256=FM_g1Z-smCsvF5QqdrE8ts7hJCPjt9BE3-6XEgXMgsw,20050
|
|
118
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py,sha256=nZF_ZwuPbbDrnyTynak_BLp0lclHJEBAXTd8CQehOYw,6432
|
|
119
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py,sha256=NfhgJPkzjhA-bLDF6zYP57Cs1pnpqteJqzO3lsFOdMk,10074
|
|
120
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py,sha256=zmTxJ8IpTod7DRDCQhkLDw7KgFCeAVFbf4cQpuOgSgI,1788
|
|
121
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
|
|
122
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py,sha256=rXEnoZA04IWnEVNfORBaffELa4ub0dqes4sMAc3Nw_Y,27793
|
|
123
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
|
|
124
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
|
|
125
|
-
synth/__init__.py,sha256=jTIZ_Zfjmx7yrrce0S58BSpsAp-IW-MfQtbeYQ7s1F0,267
|
|
126
|
-
synth_ai/__init__.py,sha256=NkgcPeQ6ZLkXpeip_qCw1-3tSaEzbAgFXw_i9Aipup0,1927
|
|
127
|
-
synth_ai/__main__.py,sha256=Kh1xBKkTE5Vs2qNMtDuuOXerHUptMcOiF3YziOpC6DA,146
|
|
128
|
-
synth_ai/demo_registry.py,sha256=vqt_E7-YdjXc-Q4qcY36wfvwHPGyYBb7lw_sPjKiH3w,9949
|
|
129
|
-
synth_ai/handshake.py,sha256=Qxe0aLNcBVH5V02fNKq96GPF_2Z8GOAToDR_2HyaeaA,3739
|
|
130
|
-
synth_ai/http.py,sha256=ACzDOkwa7kIniZVOZngPc6Zfp05h6rQE1oNqsWG_FKo,1038
|
|
131
|
-
synth_ai/http_client.py,sha256=5AkwvGf7HpvYUpxr_IIM1xdsDjLYois7xTht5ueHYkk,5058
|
|
132
|
-
synth_ai/main.py,sha256=3dwohhN_LQ_s7dEdyohYs0bh9lwqTegHiXNerNRTiIM,408
|
|
133
|
-
synth_ai/api/models/supported.py,sha256=vQu6Ahw1jn1X3-nL190pH_Z45tkQj8hdDyTTda8t5LQ,12671
|
|
134
|
-
synth_ai/api/train/__init__.py,sha256=aBwlmrj1HWVwDcvUrX4TqpS0BgvkE7Pv7npoIZmtTFU,118
|
|
135
|
-
synth_ai/api/train/builders.py,sha256=8TXHDDA2cyKYd7GmLeAMpocn1VS4LYQjNucF0f9674s,10378
|
|
136
|
-
synth_ai/api/train/cli.py,sha256=WA3Tt2uYDFF55n8F-5pebCxzhG3slH00ZTuv_ZxKu0Q,22298
|
|
137
|
-
synth_ai/api/train/config_finder.py,sha256=4touziSykzQ9YCYL2CjXUfojDcJdKO3vFnoWXQ1fOx8,7178
|
|
138
|
-
synth_ai/api/train/env_resolver.py,sha256=fxl-tY6bjyZet29dXpDROz6wvZ9itwVQuBcXGBNwm8s,12208
|
|
139
|
-
synth_ai/api/train/pollers.py,sha256=-rcVrGMN7Rj2HrzJ1IAgphwcrsCzpwwTy0KDk76Sx2A,2341
|
|
140
|
-
synth_ai/api/train/supported_algos.py,sha256=e5-NDEpsOExOhCYJrQPH_x6HAeGpKvco-xAwNWjh7xM,4846
|
|
141
|
-
synth_ai/api/train/task_app.py,sha256=MiJ0DLFjqdFNmgk-YHaHVQt31Kxl91Exh9IFfk7GSxM,6439
|
|
142
|
-
synth_ai/api/train/utils.py,sha256=NraXlAk0QrR-q1GEh76r1vg1S-tfB6_Ux-vdJnxJyxo,5961
|
|
143
|
-
synth_ai/cli/__init__.py,sha256=uGhlvSvQ36X8GL0FVaiZG7Wey5TyjSeMcr4UNGwR22A,2358
|
|
144
|
-
synth_ai/cli/_modal_wrapper.py,sha256=DHVP-wQi_gdxWyeEiA_DO0nRiMv7XpaOJ3T3-R2pVoI,599
|
|
145
|
-
synth_ai/cli/_typer_patch.py,sha256=xBTshJadUQjtOr-PyGZUytpxyV28UvfU5DPWBCa_mTo,1562
|
|
146
|
-
synth_ai/cli/balance.py,sha256=T-xcsRuIWVuoWJGPMu2ZEEpUSNlKtXQUDRJJBAPHyYQ,7977
|
|
147
|
-
synth_ai/cli/calc.py,sha256=65vkAYIno0AWO8NZeoxqkB_s8-QpZrkY1sbDnFBYi94,2109
|
|
148
|
-
synth_ai/cli/demo.py,sha256=FCsohnKHzNmqT1wZ4PzJ2kLXOF7Mr0jS_ZZrEM_nFpM,5610
|
|
149
|
-
synth_ai/cli/legacy_root_backup.py,sha256=KSMADyJ2g5OVpsq_CeBzqIeDC2Um-9GyINzsJH-75uw,15872
|
|
150
|
-
synth_ai/cli/man.py,sha256=JQDon73ZkuKP9xr1_vRh5fjV9_b5xiUb7zNjny7ArB8,3765
|
|
151
|
-
synth_ai/cli/recent.py,sha256=uvkrZHMSaccW2tK9rC_TW9hPC9Hxz2HyQSIAC8-Th6c,4207
|
|
152
|
-
synth_ai/cli/rl_demo.py,sha256=SBH5t5EnRgpq0nZm9LXlAunC8CprXwZkkTzjhWDrXaQ,9257
|
|
153
|
-
synth_ai/cli/root.py,sha256=78oCkjtMaLSHEpHRbiaX-FEsdB3gieI7OrZcUMpqrSU,13740
|
|
154
|
-
synth_ai/cli/status.py,sha256=ylz2idaMCkYwpZSY9-yXQrKW9KUWyrphxxT_vcc0HMY,4629
|
|
155
|
-
synth_ai/cli/task_apps.py,sha256=NU0cRbbn3LD8U5FAuH9DmD9TKpW9AAb5DDQNhGraWTo,104700
|
|
156
|
-
synth_ai/cli/traces.py,sha256=2ks84Orv91qgF6TQS2sZVtUUYEPGtjGMByaOCHl9NYs,6607
|
|
157
|
-
synth_ai/cli/turso.py,sha256=y9aHehGA1VvaWkoZyBhu5fLulWUT65powrpvvVp7gpA,2301
|
|
158
|
-
synth_ai/cli/watch.py,sha256=PhszGSNpJdPHb5D2Nh1FZc-gBt4aMioxdvggHdU-Lyo,17471
|
|
159
|
-
synth_ai/compound/cais.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
synth_ai/config/base_url.py,sha256=c85LaABBrvsl8Fp8KH0LNtJJrpnUwlzA5Ywbuth8fHE,3454
|
|
161
|
-
synth_ai/core/experiment.py,sha256=5ErxMLOMDHgBjWJjId-uViCyxwfx3Ns5NVrgMkPEpZk,234
|
|
162
|
-
synth_ai/core/system.py,sha256=s-Z7np2ISYmYc1r9YN-y2yb3cgRlOalrh0iaqnxeo84,206
|
|
163
|
-
synth_ai/demos/core/__init__.py,sha256=A2FjhY7KXGtyzdQXqeTPCkEhHfrH-eQg6bvP8HaYhZM,36
|
|
164
|
-
synth_ai/demos/core/cli.py,sha256=Nmkw-0v66xv1HON6IQHxvfYTDMx7b6ii2t9XO4EUMqE,66212
|
|
165
|
-
synth_ai/demos/demo_task_apps/__init__.py,sha256=fj5IgEaCWLjYx-8DpfzmUdHIEE2TlpauEDvJRgAnLy0,267
|
|
166
|
-
synth_ai/demos/demo_task_apps/core.py,sha256=Pwh7Q9HV1njZWhb479nBXM9z57bXDveUV2ZapXaSuSU,15448
|
|
167
|
-
synth_ai/demos/demo_task_apps/crafter/__init__.py,sha256=3SnNZTzBjGR9eudStcww259vPmzoFBHJL-M0GDUD7Qo,24
|
|
168
|
-
synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py,sha256=9NOpkipIAzkIL1XLtv0qexwWdixjC3C3N4LG_fJKhI0,6246
|
|
169
|
-
synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml,sha256=3voWbh5KscUtsnps5NDKTfBGiBz6-ZtXuK6uMgrcQSY,1192
|
|
170
|
-
synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml,sha256=qVSypYOMUd8g6pmiovi7nsgk4jgMBjJIORpIsrmNV4U,1644
|
|
171
|
-
synth_ai/demos/demo_task_apps/math/__init__.py,sha256=WBzpZwSn7pRarBmhopQi34i9bEm05-71eM3siboOavY,43
|
|
172
|
-
synth_ai/demos/demo_task_apps/math/_common.py,sha256=FvWvZ3BwZzX38RjZcukPlmk0FN_DT03lBbZe-mjF7tg,532
|
|
173
|
-
synth_ai/demos/demo_task_apps/math/app.py,sha256=1sdVhcQR60jLc8Vc5B2Jelh1ouo7y8gVkVgf_VcJdPg,1168
|
|
174
|
-
synth_ai/demos/demo_task_apps/math/config.toml,sha256=CLfuzZaTvpqezPrpOy03ZKvR6D3tZ0vExOsyvdn4ETo,1346
|
|
175
|
-
synth_ai/demos/demo_task_apps/math/deploy_modal.py,sha256=hLdUvOl3tGQi_mQgYWva5NUh-vIXUj4e-isGZ6Mk-14,2256
|
|
176
|
-
synth_ai/demos/demo_task_apps/math/deploy_task_app.sh,sha256=qVffbAmsiCAxzFDzcxNVF4f7yyLWnmqPc1cNydHT5BQ,791
|
|
177
|
-
synth_ai/demos/demo_task_apps/math/modal_task_app.py,sha256=DfIolFshng2XQdSSsGI7JxDUo-8a-LUngqE5dwYqYao,27995
|
|
178
|
-
synth_ai/demos/demo_task_apps/math/task_app_entry.py,sha256=HflUY0A5eeDt6Rxs28FGxd28eR038QThU-MsXN0ogn0,992
|
|
179
|
-
synth_ai/environments/__init__.py,sha256=BQW0Nc_BFQq_N-pcqTyJVjW56kSEXu7XZyaSer-U95Q,1032
|
|
180
|
-
synth_ai/environments/environment/__init__.py,sha256=EBol9AKxPTIPXWcbH9Tja-l3yL-N2kB8e5atyf6F66c,31
|
|
181
|
-
synth_ai/environments/environment/core.py,sha256=0jd0CZ88_s_qqA3d1lOgVsnv-ucw_1lJDAIUj1gTSt0,2201
|
|
182
|
-
synth_ai/environments/environment/registry.py,sha256=flHYYk5df3DiLfU4yFn-ec6AtoFtmLqRctDVgweq9lA,8847
|
|
183
|
-
synth_ai/environments/environment/results.py,sha256=IqIZqE7TxZudF63e3-OLIC57n2uiODybhwAOWkFEQxY,111
|
|
184
|
-
synth_ai/environments/environment/shared_engine.py,sha256=7moaV5eKDtNdPuM8euSaCNAPVLJ9E28v-hOu0fX0dkE,429
|
|
185
|
-
synth_ai/environments/environment/artifacts/__init__.py,sha256=RWyqjTyJB8jnLb6yNr9TgSBhLB_2XetuPzwaGUkFH4U,20
|
|
186
|
-
synth_ai/environments/environment/artifacts/base.py,sha256=yHO_PNWwAuM4KBRLOwCdggnNC3ODnuPXTD_BOkwUQQ8,1240
|
|
187
|
-
synth_ai/environments/environment/db/__init__.py,sha256=SMiJDPTgF7Nlgz9-AAlxFt82au4cshEmuDhPjfNJEvo,13
|
|
188
|
-
synth_ai/environments/environment/db/sqlite.py,sha256=h6pdGcLi8v6oj3zMCuCU8YL1hvNpiGMuer2oyuQVcCs,1635
|
|
189
|
-
synth_ai/environments/environment/resources/sqlite.py,sha256=h6pdGcLi8v6oj3zMCuCU8YL1hvNpiGMuer2oyuQVcCs,1635
|
|
190
|
-
synth_ai/environments/environment/rewards/__init__.py,sha256=5TpSHuCNeRy0W5N55ITVVoAI6oNYre9usbPhFnDrc7I,18
|
|
191
|
-
synth_ai/environments/environment/rewards/core.py,sha256=Iu5MKInKW1LGZ1vb3oc_qmsL3ZQvXxZFMnFffJ_M9BI,883
|
|
192
|
-
synth_ai/environments/environment/tools/__init__.py,sha256=ew_9CkNnt4t6nh_wjXa4BudWHhALVUbTycQsdUtAg-4,6900
|
|
193
|
-
synth_ai/environments/examples/__init__.py,sha256=POgz9O4n1tvPAW1rYNUNeQGrMlWxoPDmyht85o5Po0s,38
|
|
194
|
-
synth_ai/environments/examples/bandit/__init__.py,sha256=gn_EP6oi33BQ3gIjf4aiyEXEklbPld7n7rpx0JoApT0,827
|
|
195
|
-
synth_ai/environments/examples/bandit/engine.py,sha256=I3ICYsNuJPjP73m1ZHid6IUkWO12-4O2Yrhe0plEJXA,11660
|
|
196
|
-
synth_ai/environments/examples/bandit/environment.py,sha256=15KufC8f8yAWnSXb7XL7zA01lVE8x-tzKmNK3oOIR8c,7419
|
|
197
|
-
synth_ai/environments/examples/bandit/taskset.py,sha256=bgLwb-OJSM308YIAEQa6Lk1TFDES3VGP4HqK23VA870,6777
|
|
198
|
-
synth_ai/environments/examples/crafter_classic/__init__.py,sha256=8g6e991LpiUOkj3avOJo8qBbFiD7XSvrXb44ci98JRc,270
|
|
199
|
-
synth_ai/environments/examples/crafter_classic/config_logging.py,sha256=Eqq35s0lPAmBiU0neZM6vmHPct15gp9TwS3vogrNziM,3794
|
|
200
|
-
synth_ai/environments/examples/crafter_classic/debug_translation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
-
synth_ai/environments/examples/crafter_classic/engine.py,sha256=i13hDJe-6BXWFqXAsdjNCrfjU_HpwWLE5-4KNT-VSbs,25257
|
|
202
|
-
synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py,sha256=IMmqt0S9wh0sdP42G_Q6W_2j22gKX4YQZVvuIqLzLWc,2802
|
|
203
|
-
synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py,sha256=oC1y_CdnB_xit4FH72dMo8ljlZW_Mpa3cMpbDVCtqyU,11127
|
|
204
|
-
synth_ai/environments/examples/crafter_classic/environment.py,sha256=hDRBVNDYVj1dJRFLYTYxHucDsjwF-ZXXUEQsv7UYSLg,21668
|
|
205
|
-
synth_ai/environments/examples/crafter_classic/taskset.py,sha256=9uZpQOllUqMupIBwlz2Jv38hBYqY09czi1LOonCTk5c,9843
|
|
206
|
-
synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py,sha256=lka-3tNuYsvYQ6acEvJjvBPkylbqgCzuCd2QMOjNCRs,7194
|
|
207
|
-
synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py,sha256=wHT2pyOJ55Jlh9iq-UND4cd-GQdyKxQmo9ncCuQ_Jiw,10166
|
|
208
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py,sha256=yLW0lX3vqkhN3CsdpHMKL3rIxuglbGx2Q3_xkqy_NBQ,9151
|
|
209
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py,sha256=bAOMzobuAtpNrejkaNBZ8SYKxdkPHQPaaTx7KTqTC0E,1657
|
|
210
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py,sha256=UO5pP5xK91l_WuP9LfSsVK5wi_hJ4n-ekRvuMGv4MVw,4822
|
|
211
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml,sha256=U99N2PYZCmKT3-A2YmApRmgxJ4pjEhN8uyZ0ySm4Wbo,460
|
|
212
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py,sha256=aE0JQIgCEl4-ZZqIaPwTCD-byY25Iaigf8wR0DCU-hE,47695
|
|
213
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py,sha256=oXB463hrxRDD-L83ncIdzVQRHk3rD7Q9CIPEe6U6qic,1460
|
|
214
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py,sha256=swHkJdDh_PnXGoXn7OmgK7v3h0Wlx-9xFeuxJzhCGuw,34455
|
|
215
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py,sha256=TIB4SsjJTtwvZj7N1YUYe11Vctznag00u0PKqGC073M,46735
|
|
216
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py,sha256=V0S6U_D9b-VVYkrCblylv3usA4ouV9YL3blki6vc1fs,6916
|
|
217
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml,sha256=xUAL54kT5ThnZPmMQI0eGWXoVe8Gn1_imnB0-DMOlo4,1104
|
|
218
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml,sha256=Hws5eQUBSG00w825BgBgQDrUeuOq2KXwUsnDrkOC-2g,748
|
|
219
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py,sha256=6NXSzpAXsKw3-NdKvZXCtXFA-9tZFHOlN2QVksygHFY,15284
|
|
220
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py,sha256=6n2xKD8VBFn5EKrtFNYQgR9nSxfK6jcpavrGnUgi4Eo,1550
|
|
221
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py,sha256=eUoPNPE2hMUhDTOkYJyLWeJCOrpQfEc5GtcgedUczKk,6302
|
|
222
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py,sha256=tyvqPirMsLTHS0PwONv5Xaogc8hrQb7uSyjcTfk5hZk,8922
|
|
223
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py,sha256=uZllwyxURfZhwv9J27hRYwp2fWEH7VISjP4KErCHHk4,6261
|
|
224
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py,sha256=TOaviC_zxAHFVOd22KR6uXJDVdehGQcku7jba3c7q8I,8175
|
|
225
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py,sha256=saeqCuAxMu4dcJwBQYWJrSQc3txbZ2AzQ4VZSxgtjLw,7215
|
|
226
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py,sha256=Ytab8HoDGFLaVhAmsFAyw_9bTgEqi6s9RgAU-xAlvdc,1698
|
|
227
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py,sha256=uuqTStue3won-IrHR8z0ryUaPXrf4kBAm-FLuFdTyj8,2175
|
|
228
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py,sha256=ycKHiX4FJiu0l1Sc__I4dQBMkSPLwdiguGN9m2MFJfw,3214
|
|
229
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py,sha256=VtMhfmvdJUx0xyDKTVTz-S7CwphaBC_z-UjTv2VeTn8,2652
|
|
230
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py,sha256=6bS9hJdPiGkpx-JM6aS6YcjUlkliCQdDLJZ8RwJqzL4,11446
|
|
231
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py,sha256=E4Obn9k7JiXkqyPHvzmnkmSUqNWBvcXOhYnR5JAz72k,13521
|
|
232
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml,sha256=_7KIJo1TPwN0wia_TfJYX1azav56YEZxVyTp2vC3Dt4,1063
|
|
233
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/run_rollouts_for_models_and_compare_v3.py,sha256=7Lq92rpMLkfYqlg6M14k6YMCJ-fw9LrCD4SNo8fVl5E,38439
|
|
234
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py,sha256=vbyJZ-YonMXLrSFegQ1JZIYRPza6BLvCqQmFzAQuu64,12387
|
|
235
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py,sha256=Jdmm3N6nPBjbwn0PkHb-YKY32_sS6YIKC6qz2WgCicw,3401
|
|
236
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py,sha256=UCV_XZt2xmUdLM0x5pg_fw2lZGcwep86mRbMwJeD31o,8816
|
|
237
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py,sha256=cmfYUGuM6ArYVxCR1himSJ7yHeomUNXDMgsY6sJ0x5M,2982
|
|
238
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py,sha256=AFCeOvHVqCFT0dpICRDr1DIZrSOYlH-Ix8xEbd7Nzic,3382
|
|
239
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py,sha256=464ZK4uGqpl8cGGEM48IoMTmo4KO4DxGzxHPUPH58xk,8091
|
|
240
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py,sha256=APgU6iSmXkEYOq0EeT35mL1d1RUZp1flzbG9MdeB9rw,15991
|
|
241
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py,sha256=4MMeye3tzB9-cFjJw2ToxvJ4AMXj4yfWZjYGCIqgzig,7483
|
|
242
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py,sha256=XmwDeBt_kVcaQ9ydnS67b_tc7l_9rXqY0cUH7pGUTKw,3024
|
|
243
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py,sha256=MKGWuhcF-PbxCCw9EUVVADnz9-5uNAYk-Eas_rK6WdY,11348
|
|
244
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py,sha256=ETfejFeIX-Bx0g-V3GAoikJMiUr9XKS1CAzpsyA0Bgs,1656
|
|
245
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py,sha256=XsdyiAeH3UHUZPAki1tt1LQHXZN_8IR1t_np9APqLPg,17609
|
|
246
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py,sha256=jftMYMvnZ0fbi8C5Thy7dT5SgsM6jqnxVzG_cmqIL5E,4817
|
|
247
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py,sha256=rVfNtcgvJwPmYFFIfHhptsSbgKYlcTKhdFkvNkJoxyQ,1459
|
|
248
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py,sha256=ig8_pJcDUeIqMKTurnv5-4KfhSPewWxJ1tF8J9nhyEo,46735
|
|
249
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py,sha256=cbSJWfVMjn6I-6Z7cM3-dF7pSxa2LU-MRdhSrEHtMDo,4045
|
|
250
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py,sha256=o-Pl4wgc2t49oJVILTYqTxmYDW9_HPyv0EOLHbCT0F0,9037
|
|
251
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py,sha256=VhxJJwvQH3qO0HJa01G-C80HGLS7vWDIP2AsBF7yoYk,11671
|
|
252
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py,sha256=HaErCiVb26k5YceZw8cTg_Il5NFMtU7DVKdMsipX8s4,5245
|
|
253
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py,sha256=tD50s3OgzhimnpHXS6x5HvHkIj9uHXWhxbTEmG-pH3k,3523
|
|
254
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py,sha256=JxZxz_fE3YzfRJ23yWjqIsVfd4cLXZ1caY6p9i4QS2w,5174
|
|
255
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py,sha256=sVnjLoKV3VBgSu9jOMBm8jTEYFUaaBxiKDkCqf01YTY,1005
|
|
256
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py,sha256=DFlScN__3GgNtzaeeXHz8eFzwnJmdQYemEFNoE4-EPI,40754
|
|
257
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py,sha256=hMv8MSdqwSmbH_sdLLQukGOJ0YHtbJ43xtSD7theVs8,27809
|
|
258
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py,sha256=mhNrVw0gmez4-DSStpb8GVjyE1aD8SNX1gndR9lUC60,14171
|
|
259
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py,sha256=UTobyTuzoI0XupmxOzfDXuqs_skz7g85jDeNKl8EumM,8162
|
|
260
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py,sha256=foBEAnBkWIKgXnj81MBi7bIXGDFWnc8R_bJcKigvnsE,5506
|
|
261
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py,sha256=zZsTQE_Eyzqf2GVGouczJP0y-xs6YH_J-7eDvfpkT7k,10320
|
|
262
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py,sha256=qctIj6ISDykFgUSEKVVaBUFfmq23N9tYCSrga4VMpC4,10715
|
|
263
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py,sha256=x4ktCp0A-kisvy3RvMQSoK1yadggJOqjEMMhvIDxwHI,18433
|
|
264
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py,sha256=OuPHpx2w16tBLxV1BTsyk4YVzA9FXF5x0sFgHHo92KE,6251
|
|
265
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py,sha256=rKti-G8rZWUprqaKAj8bt6xKm1Es46dv3L9HW1Kn8EA,3294
|
|
266
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py,sha256=j-lWm8fyCcx1OgtBY7EGjIHpVuTZVHCoMG53HJume0I,4541
|
|
267
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py,sha256=wSHjy0ng7CkIYWkUGXi3KUL_DwdH6cHiFiDSQ11xkvY,24291
|
|
268
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py,sha256=U0GdxlPVg2ljRHY_UVHBGk2cnQF3PpZIjKSL39jeI0o,7127
|
|
269
|
-
synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py,sha256=yzBmVi4FXDjRK8R00rTyKCXkyzBk5gZca_Jw1ie9yZg,7466
|
|
270
|
-
synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py,sha256=hSjplDgu-m7bbpd1uuZq7n5mejBp6vylEru6xPHooJI,230
|
|
271
|
-
synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py,sha256=7M8_FJsCAEzBTbdur0LRGiBAl2V4J3kFLORn6bB2t2s,2243
|
|
272
|
-
synth_ai/environments/examples/crafter_custom/__init__.py,sha256=139ewayoaO3Oxr-vG-1hxI89urYr1Dsy35JEeJEdvj0,190
|
|
273
|
-
synth_ai/environments/examples/crafter_custom/dataset_builder.py,sha256=9rG98Z7JoStsJdNqbb5yxEu5__41h-4mg8b1VUGATvk,12956
|
|
274
|
-
synth_ai/environments/examples/crafter_custom/environment.py,sha256=O5rOusbe1Ce4VMCNBNWhVzN0kMJnAuokHLRVyzgeeGM,14784
|
|
275
|
-
synth_ai/environments/examples/crafter_custom/run_dataset.py,sha256=SSPQ4puh55grB9xjqP-yt3LZF7ihW_sorTN3txgolpo,9959
|
|
276
|
-
synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py,sha256=IiyZdN_DdRxej8kqTeZ3ko5HbqjUY56BlnkatI5KZe4,59
|
|
277
|
-
synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py,sha256=n9ssT5kHAYrZqOSgpPmfq_YkPanF8PkbRzm4It_x-LI,7127
|
|
278
|
-
synth_ai/environments/examples/crafter_custom/crafter/__init__.py,sha256=IwsX9FySJrnMXEVsHpEb-SxcYbohTMG5IOVUIsUUjSI,235
|
|
279
|
-
synth_ai/environments/examples/crafter_custom/crafter/config.py,sha256=maislluS06yuiry18rOedmiFpczw8EPFiC-45ZULiuI,5542
|
|
280
|
-
synth_ai/environments/examples/crafter_custom/crafter/constants.py,sha256=ZAHy89ZCWyLGzP1sQqlHHqGIMuIHqgsYWy7usD3ODB8,218
|
|
281
|
-
synth_ai/environments/examples/crafter_custom/crafter/engine.py,sha256=DFGknXHvOoliVtded7TnDsBrOOSnb79gbTdgpJNQKtE,9479
|
|
282
|
-
synth_ai/environments/examples/crafter_custom/crafter/env.py,sha256=y14Y7i53vjCC8wc4sqjcD2kEaSlrZvxY5DRSItIjt2Y,9273
|
|
283
|
-
synth_ai/environments/examples/crafter_custom/crafter/objects.py,sha256=8CMOwh5n2jfit-aqs-CJbf-lYMD71NOtc2mupVoz-tI,13009
|
|
284
|
-
synth_ai/environments/examples/crafter_custom/crafter/recorder.py,sha256=NcqecXkU8S5pJ4vE89KcZPIO8SknkKuV1AookEvQ2Gw,5898
|
|
285
|
-
synth_ai/environments/examples/crafter_custom/crafter/worldgen.py,sha256=m1lV-lTYVNkC5deVQrr3eb8iYr4LJVdRfrVH2jYe9F8,4115
|
|
286
|
-
synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py,sha256=yYgT1uUc4XQCGttnpCa4BOfFTGA3unFRAWal7AAgRy4,6288
|
|
287
|
-
synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py,sha256=Xf0BKbxGiVWfObDsq6L51iN8tneDZeqXXeInLVFBGE8,7128
|
|
288
|
-
synth_ai/environments/examples/crafter_custom/old/compare_worlds.py,sha256=7D1GOrE0vrt8EuyU03hdosXNuzZVKmmyRQq9UFp-bOs,2327
|
|
289
|
-
synth_ai/environments/examples/crafter_custom/old/dataset_stats.py,sha256=c4Y-074cmMP98ybr_Aeme5yu-BybVMqtQmmaQF2oqvg,3584
|
|
290
|
-
synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py,sha256=YoyK_rhwGd7ONIQb8iot_Tz5KFsyGwtLMt3mxkS74dY,4558
|
|
291
|
-
synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py,sha256=p82QGjKiY5_wFscXybcc8prlWdHdQajJE2Ni65CSTxY,1296
|
|
292
|
-
synth_ai/environments/examples/enron/engine.py,sha256=kmyE3See-NPxs3XKz7HV7XL9IoH4YTxFvPrAz9MYY1M,11702
|
|
293
|
-
synth_ai/environments/examples/enron/environment.py,sha256=s3g8zAn6qS5d_shcz8pl8J903eWa0KFw04j3Wury4NE,5986
|
|
294
|
-
synth_ai/environments/examples/enron/taskset.py,sha256=KQBQMclCh24jSCBLbxsWDn7BveT1RlnEUDErm5AW57I,3171
|
|
295
|
-
synth_ai/environments/examples/enron/art_helpers/email_search_tools.py,sha256=bDiuxp8W5ZZEtM1vn1n0B0qxqBEqCwMwYDGHy93rBiQ,5545
|
|
296
|
-
synth_ai/environments/examples/enron/art_helpers/local_email_db.py,sha256=h3Q44pKs5pnz_on66bIFVhL4Ma5chdKzCDST_oYSQWA,9985
|
|
297
|
-
synth_ai/environments/examples/enron/art_helpers/types_enron.py,sha256=ZMpkH5bLmaCcm3OL_6FxzQxrgY9QI82LhC-W-a6T25o,734
|
|
298
|
-
synth_ai/environments/examples/enron/units/keyword_stats.py,sha256=MwB8toyTpwxu86AODyFdalUbsxFzXoonpnnu8jt-oSM,3084
|
|
299
|
-
synth_ai/environments/examples/minigrid/__init__.py,sha256=e7cd6mAcSiPbxtpVyDAGW9CE_sILNNF-BW8c2sJcSUc,1328
|
|
300
|
-
synth_ai/environments/examples/minigrid/engine.py,sha256=-PokRGnbzQarpF2mPfVW49auU7X_MMOyV1cGNmJA_Ng,22061
|
|
301
|
-
synth_ai/environments/examples/minigrid/environment.py,sha256=sRmxb4Ntm8B6ngzyQZTmQ9PR5KvXI4TzbKEBWrDIi5k,10490
|
|
302
|
-
synth_ai/environments/examples/minigrid/environment_mapping.py,sha256=N0JJ4Ako-sX-89nE9vCbPQIzVuhGpyy309Y_y7osNiA,7019
|
|
303
|
-
synth_ai/environments/examples/minigrid/puzzle_loader.py,sha256=fjLqZ_WW2Oc5F1zQM6SRS98pT2Tf04O3tkjFzI-svmc,14656
|
|
304
|
-
synth_ai/environments/examples/minigrid/taskset.py,sha256=k0XiC9bBV5te3NJpiMXUShBJ200X40zFDIQxv9EsOio,21305
|
|
305
|
-
synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py,sha256=r1r0K0uyZqNaByxB3osb9HhSYJ7vqMm6pooqITaMgZw,46597
|
|
306
|
-
synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py,sha256=GmPMhhmwbTeER7ywLY9IUOFmixoJdtxgaqm1QLblXx0,1478
|
|
307
|
-
synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py,sha256=-W6-pUmpLwhxCrS2cA2g_UEWjrBultsBC5YZLUafkr0,20021
|
|
308
|
-
synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py,sha256=Y6NH7u6GWE25xfX6fNSUnwT1rZL_5EnojMw_xk74AS0,6989
|
|
309
|
-
synth_ai/environments/examples/nethack/__init__.py,sha256=viygo8pTUB891fGm_tb38s5thNcr17bLFffQdDOfiQ0,266
|
|
310
|
-
synth_ai/environments/examples/nethack/achievements.py,sha256=YKSYGPXSTva0hwI5Vom0qVEB5DX9rfSbVFUOSnSTTYA,12443
|
|
311
|
-
synth_ai/environments/examples/nethack/engine.py,sha256=7DPUA6w06vXrBpo_uqSZbm5IPxligXg0w_KbTDHy3y8,29957
|
|
312
|
-
synth_ai/environments/examples/nethack/environment.py,sha256=FBgjN2MxEoWrsKGBaNyx4NnU4v2_9YBhiffbY43LD1c,10042
|
|
313
|
-
synth_ai/environments/examples/nethack/taskset.py,sha256=VuRW1hGqtGycBYA6IDPLmr8Pevqg_-Ly-IM4b6vsFYk,11339
|
|
314
|
-
synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py,sha256=YDovgJWS132dTOwQzfvJbQBYwJfd3a3nq4Pt02tatIE,38865
|
|
315
|
-
synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py,sha256=NY2pS27eto66YiVxXlVZMIjHelXtA5KD5LHyhcPVg2o,1992
|
|
316
|
-
synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py,sha256=33z5BkGJwW282ti5yVqYA9PyFwVsQ_hm8fG-91Z93s4,34363
|
|
317
|
-
synth_ai/environments/examples/nethack/helpers/__init__.py,sha256=dvKHaTSS_zn2zLM09TvJsPotiwXgfYr_TiqLw1vAmAg,958
|
|
318
|
-
synth_ai/environments/examples/nethack/helpers/action_mapping.py,sha256=IzBWMxUHhYWf4a6sfH5gmSXb9OGCEFjKNTmWGcm0le0,9133
|
|
319
|
-
synth_ai/environments/examples/nethack/helpers/nle_wrapper.py,sha256=9EYtTXK8ITe9p871nuZ2P5Ua29cFChyPzO7g5R6_SZ8,15142
|
|
320
|
-
synth_ai/environments/examples/nethack/helpers/observation_utils.py,sha256=FlZUycZEtRTACq1rRIhIfUmOMCF-jVqRR1WSgWbAolM,12350
|
|
321
|
-
synth_ai/environments/examples/nethack/helpers/recording_wrapper.py,sha256=YJnwu-E72U7t4YIUr1__Chm_DyVQoDOtbNl61X_Kz0w,7447
|
|
322
|
-
synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py,sha256=fpnCDmWnoVp5wyw3KoneS2B58pEBRxhNMTl1ggAuk6k,8988
|
|
323
|
-
synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py,sha256=sqd-todPUhK2VogNcPAXLqtHE0ASw7ythTzYqVgSYRM,11902
|
|
324
|
-
synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py,sha256=70reUQd5jk2Rs7hhX_NY8K4_zVxZObGmomPDYoVF2g4,14832
|
|
325
|
-
synth_ai/environments/examples/red/__init__.py,sha256=4uHc_oyMmFK9jllUs9BAY4mxMwt5_Q7sD7Meo8zuTa4,199
|
|
326
|
-
synth_ai/environments/examples/red/config_logging.py,sha256=jVjehrms140gnJ1aAaXK9oxRXqh8CuU23yGp4AZOh74,3710
|
|
327
|
-
synth_ai/environments/examples/red/engine.py,sha256=R8uVkQyd9VQe7LdIBzQjcRPRAhHsP3BW3iKwJfci73E,23836
|
|
328
|
-
synth_ai/environments/examples/red/environment.py,sha256=lhEYlWjmSGKZFfdD4_g0oA_E8VAFc_6ppyPXnL-JEao,9364
|
|
329
|
-
synth_ai/environments/examples/red/taskset.py,sha256=B7TjNjBscUDeWEXmNjJxvoNSGbwNzRqaxS0XUiOYgXg,2827
|
|
330
|
-
synth_ai/environments/examples/red/agent_demos/__init__.py,sha256=sz-ozQldJ4M1Fn0Qrxct63Ru3DyRNj5v3_n9Mtk-Awk,42
|
|
331
|
-
synth_ai/environments/examples/red/engine_helpers/__init__.py,sha256=YyNOk0TMWA_CI_EakcTMjbLJpkFKKRhJfVe792w-CXE,33
|
|
332
|
-
synth_ai/environments/examples/red/engine_helpers/memory_map.py,sha256=jOsBYaYYxUy2tz3L2pCoj7Y_3UdrViw6vNYdgbEZFDk,1193
|
|
333
|
-
synth_ai/environments/examples/red/engine_helpers/reward_components.py,sha256=zueBbdnERtim8LjgsGsSglowgqCx66F01NegHYqAscQ,9356
|
|
334
|
-
synth_ai/environments/examples/red/engine_helpers/screen_analysis.py,sha256=Z3MieifyTux37LATCRHYlcSsK8RX1Bc5tM3mKi4WXAo,12774
|
|
335
|
-
synth_ai/environments/examples/red/engine_helpers/state_extraction.py,sha256=klKNv5y_vURtPfFhwhNOLZ8qEGUjcfd5sCbNUB2etAU,4419
|
|
336
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py,sha256=kVVAJLLrZqwlbcUIvxOdjaKGUUUnVV25LyCXzEfpoMk,4015
|
|
337
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py,sha256=-Wox3xUMfn_7flG3_PROl0209bVSTIgAMDqCxVR5grY,1891
|
|
338
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py,sha256=pXHjxQwRO5EFkKfFERdu0jCitC3xygPq236JkFEVcjM,10427
|
|
339
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py,sha256=wYvcnlGAT5cvAh-4kuZ_jYQAtwXUlSZ-k7Pr6s19RAA,5092
|
|
340
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py,sha256=8UpwTzQHOl0VqhjsWtb1SHbVxLmIGdjXzoUGl9LXoMc,5019
|
|
341
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py,sha256=Frkr6UE57dmA1WWaa9d933nK8TbbI07ucVC5bplM1ZQ,1818
|
|
342
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py,sha256=1jKMphKjG_YJa7OKsEHLT3geBBHcrCYKi45tDOaCF-4,12392
|
|
343
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py,sha256=ii6pZijxW5oDtQtPelWOoOKjNJ4NAoN9wtaDmOiyNCM,3612
|
|
344
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py,sha256=8SaZP_76PIaXWs0bbmc2cwW2V0dz5XSXCzkHFB5ho9E,19890
|
|
345
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py,sha256=0WtJcdWtcjHD7Zk678KGZExZSlhd6nSmJ1JFzEYRe4o,10861
|
|
346
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py,sha256=MjocMamUzUue6EgwGl1dd9nIUqA67mm1LgNN4L27p_c,5676
|
|
347
|
-
synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py,sha256=WOq39UtC7e0cTBQj88TIHwI6KatmR6UxhOKuJSS4SXI,8465
|
|
348
|
-
synth_ai/environments/examples/red/units/__init__.py,sha256=W-M8LkGSsM_OvQicjUOi5358XVY6E5CvuVhZVQ4JiTQ,41
|
|
349
|
-
synth_ai/environments/examples/sokoban/__init__.py,sha256=Y5MpHrvlI9s5gEwlAJ0FM08bZpyC4QdnGWaTCyPQas8,35
|
|
350
|
-
synth_ai/environments/examples/sokoban/engine.py,sha256=e3jFsbrm3nr1u90aa3hXiCFoMs9dcyAq4xjRZWv2cA4,26354
|
|
351
|
-
synth_ai/environments/examples/sokoban/environment.py,sha256=Owy7ppk8X3FJoX2rIB4QVi9JmmkhBo9PpftzjJPInuM,9802
|
|
352
|
-
synth_ai/environments/examples/sokoban/generate_verified_puzzles.py,sha256=Wu1UMtUk_qk14LHHKSSkk108yuM9TFyhG1F9Dpi_Kk4,15511
|
|
353
|
-
synth_ai/environments/examples/sokoban/puzzle_loader.py,sha256=3FTMk_u6G9Ex1BBFsCxHDO5nTdENlSxM6BSIafXJ0_E,11498
|
|
354
|
-
synth_ai/environments/examples/sokoban/taskset.py,sha256=suFDtkh20_Fq-A-Oc3CtaLXhsOa2WQVZNPWafrdhikY,15506
|
|
355
|
-
synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py,sha256=q9S0ASGMt5II1yIuDzSkernn1Q1srErHF9QGT6Wm8yg,39845
|
|
356
|
-
synth_ai/environments/examples/sokoban/engine_helpers/__init__.py,sha256=ensyOUm01rMpYZPIoV012_v6vxnv95mwwi63hLJvwIw,29
|
|
357
|
-
synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py,sha256=1qs8UmlqD-VKPXNvncqMG0X3ICF_LXif4BP5tUkJ-34,21758
|
|
358
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py,sha256=aojjVMDT0WX5hhjt2sxTwDe4_BoS7ZogcFTz1andAq0,405
|
|
359
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py,sha256=9NnrZMdHGIqAqB2nJVOyxvbxElbZURt_LifmysF5CB8,134
|
|
360
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py,sha256=St4GMPN2HtKd-Em9GXRq7Yjs9WaAizPBCKcvFbYuIHA,4134
|
|
361
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py,sha256=oB2oEpusoTZDsq2-7MhUDS2zEWXICRGNFsMOlJahF_M,11375
|
|
362
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py,sha256=Z9g8Q8RzHSHUVSkN_F29NSBFK-5k3BKLVPkvqM9lO64,10588
|
|
363
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py,sha256=4F-tPHZAmaI1cIhPzVOAZQiKOOyL0s_5vmdlDaPqXu0,10382
|
|
364
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py,sha256=bFKXcif8NHNMzsDufD6Audws8ACVh_umL8myhkeEQdI,2552
|
|
365
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py,sha256=ZCEr6LoSxKvVQzbRGwRBN62RAQPP5jiLoNqI8c4Ij2Q,3808
|
|
366
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py,sha256=99yZCBsbx3i5Wiuf786TiHQjq2tMEY0OKsOEa-obhXY,3763
|
|
367
|
-
synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py,sha256=VKMXRVmVdIxfa0q_T5Dfll5HHadc5QHpktRQztEIxGs,15455
|
|
368
|
-
synth_ai/environments/examples/tictactoe/__init__.py,sha256=XGoOP8GEGXjG-TI_E_-3b1jOhpGNtl_LmR9G3K59Gig,31
|
|
369
|
-
synth_ai/environments/examples/tictactoe/engine.py,sha256=B2OYQ3TVi_c75BRy_zHIEWjcTSaO4vnZZQJTo6wFe7k,12430
|
|
370
|
-
synth_ai/environments/examples/tictactoe/environment.py,sha256=p_ZN5-AyYKUnIJ5Df46fXMlJZ6yRerkvXC9GA1W0Ht8,9336
|
|
371
|
-
synth_ai/environments/examples/tictactoe/taskset.py,sha256=q601JiFJXqJu9gjsvEXgYA8TkQ-u0pLZgzxHN7A4hBw,7812
|
|
372
|
-
synth_ai/environments/examples/verilog/__init__.py,sha256=JBf4ayWGO-VPK7PLitp_-jiKDi9gd3hhQ-PahNkiLJ0,262
|
|
373
|
-
synth_ai/environments/examples/verilog/engine.py,sha256=Vl-msE1hrtx1zSwy0p6Xq0nCgCo-AUHy2zkcJA715LA,12171
|
|
374
|
-
synth_ai/environments/examples/verilog/environment.py,sha256=UfdV8097c_oCtqoaL9TP7-J2nsYCz3tFQRdFoUW0pKA,12330
|
|
375
|
-
synth_ai/environments/examples/verilog/taskset.py,sha256=sJzLVjq3d4_gbmzKQPLJlFYBXIHonf8ybpB7HdZYdLo,13338
|
|
376
|
-
synth_ai/environments/examples/wordle/__init__.py,sha256=JksC4yMuWfnoO1nXS-bIrxRGPBL3AU93Kw4R1FYGj7E,804
|
|
377
|
-
synth_ai/environments/examples/wordle/engine.py,sha256=FyPczyaBCJHR5kM329w4fP4yDTKQl6uCw3F3iKj6fLI,13097
|
|
378
|
-
synth_ai/environments/examples/wordle/environment.py,sha256=bVQgDKX6l96unaY37cndf_8eBEiLJwvoPZ6DAgb5fQY,6378
|
|
379
|
-
synth_ai/environments/examples/wordle/taskset.py,sha256=E5EfE9cma_saVoUKmVkCL9FgYeKRnkpQDviZAkyuIoY,8236
|
|
380
|
-
synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py,sha256=QZmCX62GMfrR3U6VqzFth1C9nk7JL1JO7hpHcXUFrOw,2509
|
|
381
|
-
synth_ai/environments/reproducibility/core.py,sha256=jDhG1EARROJH7-Y7eKuMYdjbi4-t1QUbxddHbbG1Dxc,1499
|
|
382
|
-
synth_ai/environments/reproducibility/helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
|
-
synth_ai/environments/reproducibility/tree.py,sha256=jgnQZr-8pceFPclfG0gM7Lpjeq5Dp8ozFMf9krdhGD8,13675
|
|
384
|
-
synth_ai/environments/service/app.py,sha256=mZo2bo3wGralv9-W3_dzwOSxW-O8ZPqTppaV15Fb014,3558
|
|
385
|
-
synth_ai/environments/service/core_routes.py,sha256=KmLXfvbXe-eTloB5dUqILUfsmxs5MGjT-GwQTdZT1nE,38365
|
|
386
|
-
synth_ai/environments/service/external_registry.py,sha256=3PiWCsZr0PburC6K-IBjO9uHGVa-qnT0JHTFyyN4sZE,1765
|
|
387
|
-
synth_ai/environments/service/registry.py,sha256=R4bvjdEW1GtYJdZL4Vl9ogNCQc0iGCxmjs-NuzCo5f4,405
|
|
388
|
-
synth_ai/environments/stateful/__init__.py,sha256=UPNmotqxS2zXjSfhBui6R4qsDOIxKECL5xVTVDHcvsk,39
|
|
389
|
-
synth_ai/environments/stateful/core.py,sha256=hzQdicqHqffDUIBBEMz2eR5nt5M_zFV1s2mdlkvntMw,6377
|
|
390
|
-
synth_ai/environments/stateful/engine.py,sha256=FLEb1VCOUp6Bf_s7C-w0LDmhPoSEnLI3J6eUNcENBsU,436
|
|
391
|
-
synth_ai/environments/stateful/state.py,sha256=UT-cZzXPtHYZccefQ8hgKbRl80UzriNBnXlIF_xEnVs,257
|
|
392
|
-
synth_ai/environments/tasks/api.py,sha256=cvfC8-aTHEkM22qnzx3_QI71kmIH3jDzkswb3y6M2FI,308
|
|
393
|
-
synth_ai/environments/tasks/core.py,sha256=Jal2WPXLyq6XeCD43QJmDdxV6okFOTJzXe2ke5YqQLI,1804
|
|
394
|
-
synth_ai/environments/tasks/filters.py,sha256=CJDXMUF4HDVQgdR3tIqHddUuvGmwwQG27ONxEnO2Aes,1343
|
|
395
|
-
synth_ai/environments/tasks/utils.py,sha256=2UfWqN5WE7blfpdd8GcPuT56sDAPXzlF0pGUyGO_M1g,2576
|
|
396
|
-
synth_ai/environments/v0_observability/history.py,sha256=gW0SozHmxeL6PFNaTAQ7em8BNUlObsRpP4_MJ3drMBE,54
|
|
397
|
-
synth_ai/environments/v0_observability/log.py,sha256=B4LvbPh0a1_E5dki2PlKAVHESB8oCQz0CmDBvC0GwdQ,38
|
|
398
|
-
synth_ai/evals/base.py,sha256=Pu_h3oJAAEqJxgj5eigqbVhrNjAGJnBtlxpacSbGXCI,353
|
|
399
|
-
synth_ai/inference/__init__.py,sha256=5xwgFMKRfbLC7TX3lwMqGOZ8HHOEnXwlDqV_FLjsd5A,74
|
|
400
|
-
synth_ai/inference/client.py,sha256=FA1h4rcMu7M0qCCCJ4yQTqC9dM1weVhDWylry8znnCc,1262
|
|
401
|
-
synth_ai/jobs/client.py,sha256=MMtv8vEkfWJjBMrq-6TV7esZVYFl9o6ZXogVwa0Lla4,9546
|
|
402
|
-
synth_ai/learning/__init__.py,sha256=Vk-5n8qAmGnNAIH-4LSU3vMD9CuX8_4ZFqwUJC9GDp4,1584
|
|
403
|
-
synth_ai/learning/algorithms.py,sha256=N2sXJ-U5QfvmSCtB2KUkTMyg46_pibYXHdIrYSKGyxA,342
|
|
404
|
-
synth_ai/learning/client.py,sha256=DdjCZZLch4SG9as019XZoq12OVC9ZSKJQk6D5WCjfIw,9526
|
|
405
|
-
synth_ai/learning/config.py,sha256=-mh2thnHfuwivKnEt4VYCfPPrgwpQvY9QeMg-7HW1H4,98
|
|
406
|
-
synth_ai/learning/constants.py,sha256=QaunQg7Xru0S6AQv_-zoDprMB0ssn9sPHnhaTxz8reY,536
|
|
407
|
-
synth_ai/learning/core.py,sha256=bA_Ng3YKeCJb1scnrSapp48HildL7Pd2fHkZ4zxurZU,440
|
|
408
|
-
synth_ai/learning/ft_client.py,sha256=CqZh195n_QILnbnuGoCcloweTunhxPzWJVDPFFykekk,179
|
|
409
|
-
synth_ai/learning/gateway.py,sha256=8plVu9V_0PTt1ZI6awuh9wSFT4BqS-mLshaN77wGyDk,31
|
|
410
|
-
synth_ai/learning/health.py,sha256=sfq7ktelJBhJWOiHh-hMQHuAkFMxBe8xDHBRlHjocK8,1570
|
|
411
|
-
synth_ai/learning/jobs.py,sha256=nqYkzfZtFXULje9EaRueWRlMdfbPgBhKfHvU67bwDXs,9241
|
|
412
|
-
synth_ai/learning/rl_client.py,sha256=zJfY3M-9i45lfStN7_ptk8XUAM8z7MUrk_NN4OIBqkA,92
|
|
413
|
-
synth_ai/learning/sse.py,sha256=E95hgsHK27hxyl4xcgGH_6hmn-GHk3qhgcI8H7_-7c4,1796
|
|
414
|
-
synth_ai/learning/validators.py,sha256=2POP8z-kziFw93O4NNOoVRMutW_AohY-y72b-xRg604,1552
|
|
415
|
-
synth_ai/learning/rl/__init__.py,sha256=L3GAK_1DPMg2Y8mhHm1ywKUOAdZBqKlHiu5HrJabCKY,872
|
|
416
|
-
synth_ai/learning/rl/client.py,sha256=vdVFxju4PUZx13ECesvkMvEkyw2x5u4mzj6vKfIqcBA,11377
|
|
417
|
-
synth_ai/learning/rl/config.py,sha256=T70JlL4i6tSft09-jOs84hFgAiD2XpcVCtC5Rfz7Ehk,864
|
|
418
|
-
synth_ai/learning/rl/contracts.py,sha256=_3lY_bqsBBLzNTtSuqWH4Q53BpmOHZqhzkE_7S4msSY,570
|
|
419
|
-
synth_ai/learning/rl/env_keys.py,sha256=GZ-rUZFkYPjCVIaJ-iCamsErQF7xGxjIqd94GjmS-CQ,5589
|
|
420
|
-
synth_ai/learning/rl/secrets.py,sha256=UlVFAOjzLCS6yaWtWl-8Hz0A1vH1XS8zXlHCd6ib0kg,275
|
|
421
|
-
synth_ai/learning/sft/__init__.py,sha256=6SOcXUwYebySuy1QGLApv5U6zbAOobcSE6NsInouwPA,564
|
|
422
|
-
synth_ai/learning/sft/client.py,sha256=9KxDcnwQl5FKZgXOUsEvsihFJUg2CHJA6sc791cypyo,2582
|
|
423
|
-
synth_ai/learning/sft/config.py,sha256=pdUvwmhYMSIrFTD7-a9MglPwHevP4OSed9TuOzdjkOc,9791
|
|
424
|
-
synth_ai/learning/sft/data.py,sha256=gM9ObMO7L3woKUVL2p-Pz6iTikS1Yr40vce5zRy2H84,9454
|
|
425
|
-
synth_ai/lm/__init__.py,sha256=uXZFG6zFox_oV6FM7cJQxmnCNUBBa50ZuhdXCNxx0Lo,875
|
|
426
|
-
synth_ai/task/__init__.py,sha256=FyzWbFjQCXga_ZT1oWVLt2N58dHsLcM5sMu7kjoTpW0,2409
|
|
427
|
-
synth_ai/task/auth.py,sha256=IUD3DcU-43qczWV9sSccXsjDOkZe8sJHmcQtues1YWQ,5652
|
|
428
|
-
synth_ai/task/client.py,sha256=ccbcYRaZZ5MBMcfFdA8x2t7PjXEdvKuFmwRxrRl_8vk,5741
|
|
429
|
-
synth_ai/task/contracts.py,sha256=9iupoX_ubBgdGrla7jaH6G52R8CN6ZBJEamvyOyc8Ik,4142
|
|
430
|
-
synth_ai/task/datasets.py,sha256=5wqvTaDm-A4F6shPMXy5NMZim2_OGbMCSQBuuktn2qI,3968
|
|
431
|
-
synth_ai/task/errors.py,sha256=BOdWz0fgJVprx2-mGRJTnTilAGHmc4WRpUVFA7eLrlc,1524
|
|
432
|
-
synth_ai/task/health.py,sha256=wfNNLYlWLmwoPpHA8ahDdqb0YAZ8JTyHzs8bdIX-pOI,1139
|
|
433
|
-
synth_ai/task/json.py,sha256=SB9XdHFloJha9WeClq4mvaL8B21-fRl9kb1d1JlNfIc,3612
|
|
434
|
-
synth_ai/task/proxy.py,sha256=bUKPqc8IS94ToHzo7xZe2wzIODv3XW6dUIus3_OEpgE,9029
|
|
435
|
-
synth_ai/task/rubrics.py,sha256=_qqAvl1NFGW6nJlzmI3UwjxuvWbOQeLcMwrZpmpMQGk,7180
|
|
436
|
-
synth_ai/task/server.py,sha256=Z-06aEnK3Q3VZlGzv6VlQXnO0XwG2YrWODAcxIqvoVc,15952
|
|
437
|
-
synth_ai/task/tracing_utils.py,sha256=wk6Gl8JApZePLm_EBQc3EHNEvOdjQSa5mPa02IWQy5E,2505
|
|
438
|
-
synth_ai/task/validators.py,sha256=OGPwdzoyoS8lMgq3nmzdUDEFwCDo2OC7ETQLWiE5Yao,360
|
|
439
|
-
synth_ai/task/vendors.py,sha256=a5t_1HGwPnPUoPMbzNB87jOTCyA4S7W7eIgJ-E4Gfew,1626
|
|
440
|
-
synth_ai/task/apps/__init__.py,sha256=pYug8RalL9laX3LwPg3VtP8M31QwtuFsYWWGF9mSX2I,4062
|
|
441
|
-
synth_ai/tracing_v3/__init__.py,sha256=DRhOO-AFtCYSrQ_S-2gLTDCBZUVwy-NKgdAr9uh2K2A,3307
|
|
442
|
-
synth_ai/tracing_v3/abstractions.py,sha256=uja-8UMh-RWfpVBjsZwNw1UhNMpgsy4Zmd_pEq_qXjI,12865
|
|
443
|
-
synth_ai/tracing_v3/config.py,sha256=mPX2P4ILv1ktoI8oGKO_LyLc0O6Lnr2jbHA3QE-y6N0,3241
|
|
444
|
-
synth_ai/tracing_v3/db_config.py,sha256=t9yalucYHdna7kcIQB3aEM9MDThl2hvwbbJhqL_iIQs,6773
|
|
445
|
-
synth_ai/tracing_v3/decorators.py,sha256=WAseqTnrsTKUXs0AGyspwbvoCM_Sba5bvd6tN6f86Q4,13546
|
|
446
|
-
synth_ai/tracing_v3/hooks.py,sha256=QUfVvE6H2HIkP-dED1ctBpxzJXpaM_7UU-XaU6043W4,7997
|
|
447
|
-
synth_ai/tracing_v3/llm_call_record_helpers.py,sha256=yWDI3vewTr8qhfYszKZJZv4oABfREafHc8Ur1YwAM_U,12189
|
|
448
|
-
synth_ai/tracing_v3/lm_call_record_abstractions.py,sha256=j2RGuXVaV_EXmIosuXRDjptJSlrDXwb8x06k2fF6lqo,9195
|
|
449
|
-
synth_ai/tracing_v3/migration_helper.py,sha256=izm7SNHtG3VDv_5ZmMk_mmwKitmShxUK3joNFOArZIY,4177
|
|
450
|
-
synth_ai/tracing_v3/replica_sync.py,sha256=oDjlv7Z6fo8g-NrCwJEpcneIlTEOkTauqMvGBnFktpw,8671
|
|
451
|
-
synth_ai/tracing_v3/session_tracer.py,sha256=z9-gt7SK68X_q0aOHwWOtGOaGClpoWkUkAxAOwTKpI8,18996
|
|
452
|
-
synth_ai/tracing_v3/utils.py,sha256=t-ZEyP03j8k7jNxtLsOSvzQnq8SXBaRPdK7jCgPdVdI,3450
|
|
453
|
-
synth_ai/tracing_v3/examples/basic_usage.py,sha256=z8Z4UscQJfxPW76cKEfGdUL4O_gEljgy2gxaQBrYIu0,7211
|
|
454
|
-
synth_ai/tracing_v3/storage/__init__.py,sha256=VPjBh180bcSPz1HsbqaqfnvguwqwomaEYKxkrhfGABY,332
|
|
455
|
-
synth_ai/tracing_v3/storage/base.py,sha256=Ou-J_IINQqG2GgQfYcF3FIaAteoEfZZzmnTsDisa_II,5995
|
|
456
|
-
synth_ai/tracing_v3/storage/config.py,sha256=l8XRSP8-WAUSLyGqkGVKsdmruDzPxn4JcdsoAM44x38,2572
|
|
457
|
-
synth_ai/tracing_v3/storage/exceptions.py,sha256=zqfsjb4r8qcZGlId0h9-x0RpJq2_DRDfdlzW6_KIRCw,708
|
|
458
|
-
synth_ai/tracing_v3/storage/factory.py,sha256=cgF6WGd6o7JUKhRxNpLC221ludB_YWL-wxwPecidOlQ,1303
|
|
459
|
-
synth_ai/tracing_v3/storage/types.py,sha256=LevN8M12ilZ0EaiQ6Y3yONSMuLGEhSKNt0ir5wbVbek,613
|
|
460
|
-
synth_ai/tracing_v3/storage/utils.py,sha256=0fbJNwAXVRfwkg_RM9nRAdSbQTDoDnt_AdR3aFZDHzg,6180
|
|
461
|
-
synth_ai/tracing_v3/turso/daemon.py,sha256=cpHpuFjgbtUNby5dX0zVIIacPogr1lxu3zWy68LlDUc,4408
|
|
462
|
-
synth_ai/tracing_v3/turso/models.py,sha256=BZg4bo-V9enr8R5pJ9mOTsfb6QdrULjj_jgMgnwzeqM,16362
|
|
463
|
-
synth_ai/tracing_v3/turso/native_manager.py,sha256=aXP7YYSr3Lq7I2Ovf4979oWGJURGGOp-kiTfuwvbIRY,41513
|
|
464
|
-
synth_ai/v0/api/__init__.py,sha256=wgz7K2rwVmxTRx0vy5abWclC2NTVjsM1buYQxXCnF3k,197
|
|
465
|
-
synth_ai/v0/api/models/__init__.py,sha256=-VNJS0rSmrWaXnb2RkaBoDXc_9roO7ZgWVBe1vGKz-8,167
|
|
466
|
-
synth_ai/v0/api/models/supported.py,sha256=aQCUi9xPn1Nt5Xd7yN42RyZVppsYaUdCADFoew_NhoE,246
|
|
467
|
-
synth_ai/v0/config/__init__.py,sha256=zqDx2a57ItVoQb8t-xDCLAt9Xol-uTOrKxMIxXUCHa4,328
|
|
468
|
-
synth_ai/v0/config/base_url.py,sha256=aNqAzDXgROUII7Y_dIa4-W5ng5u97XOb2W1v-Skfps8,387
|
|
469
|
-
synth_ai/v0/lm/__init__.py,sha256=QOqCIRK9Ge5NmWJpQe_kcREZrv39rs1mSMLKfCKAeTM,1155
|
|
470
|
-
synth_ai/v0/lm/config.py,sha256=pFbk__5r5qvtoasq8xmGa9m8diuJFWhcHNPivPmZiCg,3795
|
|
471
|
-
synth_ai/v0/lm/constants.py,sha256=I7WRm8bRqH0mQQS0bbBysojzxdcvuJ77kJh81es8qZw,1227
|
|
472
|
-
synth_ai/v0/lm/injection.py,sha256=pMWQSem8j_76cw5sMevcw54H6Kb3UG2uPSK-O64y8BU,2807
|
|
473
|
-
synth_ai/v0/lm/overrides.py,sha256=mEFT4EG-fbsLH6ZFQ3pPuc2TCSKM252TQfSzf0KHXV0,6891
|
|
474
|
-
synth_ai/v0/lm/unified_interface.py,sha256=cHi90uhWoLq58jMNvNzd4xwbxR7JFK8QbF6pjKWHeIk,6436
|
|
475
|
-
synth_ai/v0/lm/warmup.py,sha256=-h9H8PRPs6tiRIwhSTlfqaG4K5OQpVMBvxpd24Bst7Q,6740
|
|
476
|
-
synth_ai/v0/lm/caching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
|
-
synth_ai/v0/lm/caching/constants.py,sha256=75etL2lff9oHv2xGitvTtxACS2ffuPECZc6RKiSX4DI,149
|
|
478
|
-
synth_ai/v0/lm/caching/dbs.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
synth_ai/v0/lm/caching/ephemeral.py,sha256=zk0s5gAG_df4pCQF7Srw9HpdaVltYmAQWZtBg8yMqVU,3282
|
|
480
|
-
synth_ai/v0/lm/caching/handler.py,sha256=OjeA-SIpuSa-pYyMGiQpAuZYD-mkXnkcxzQNR7UFh8o,4868
|
|
481
|
-
synth_ai/v0/lm/caching/initialize.py,sha256=s07Mo8kzL6yZ485Jr4KGQVLOuaqyoT4UJxAbSuVEaiw,408
|
|
482
|
-
synth_ai/v0/lm/caching/persistent.py,sha256=ZpxKYAN2exN7CSz5RSCHmhnhAupf3FJ7zVYQbFucYwY,3809
|
|
483
|
-
synth_ai/v0/lm/core/__init__.py,sha256=pFiA6qPyQu6e-KrZruL9A-soRlhSU4Vd_TmdqMzWaIU,136
|
|
484
|
-
synth_ai/v0/lm/core/all.py,sha256=w-eL-SXpXLijrZqJuzkOZD99lIRigz81ZnfKS5SNRkI,1792
|
|
485
|
-
synth_ai/v0/lm/core/exceptions.py,sha256=n5or_9SfUuoPZGFWIHOejEDoY5Zzrg38IywAkQIhbNY,96
|
|
486
|
-
synth_ai/v0/lm/core/main.py,sha256=UX4JPJcNxc2ZH5SmkCy2VVsJqZLIH4KE5ScP5VD2DAM,12954
|
|
487
|
-
synth_ai/v0/lm/core/main_v3.py,sha256=en-G-FGQ1narHa9B0lgY8DDBFfWLc6Ezjbuj8reDN2c,24632
|
|
488
|
-
synth_ai/v0/lm/core/synth_models.py,sha256=nqGTx03iESyTGX4vkrpUbzSzrh5aD6cfv1sy8_Up4i0,1350
|
|
489
|
-
synth_ai/v0/lm/core/vendor_clients.py,sha256=8diDLz_X6BwlB5NA9fb-nPRsagJYpA9LJfR5tQtB36Q,6908
|
|
490
|
-
synth_ai/v0/lm/cost/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
|
-
synth_ai/v0/lm/cost/monitor.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
|
492
|
-
synth_ai/v0/lm/cost/statefulness.py,sha256=SO-H9_R1_KL110z_ceRIJzH6n8D9gpx-R1-_mtO7pNI,37
|
|
493
|
-
synth_ai/v0/lm/provider_support/__init__.py,sha256=dUyw3dK63eDvo6VmM4dol8ZGfyYk2V1vzQEAdZlZ8-s,225
|
|
494
|
-
synth_ai/v0/lm/provider_support/anthropic.py,sha256=e2iL5zgZ9Eo2TYQHFbImYbljtxqdOQ4AQ5Xnoeka4RQ,35530
|
|
495
|
-
synth_ai/v0/lm/provider_support/openai.py,sha256=elEMPakNrjf2PaP2BwYSQMY9I2zQwBkvi1MHaepXdRc,40061
|
|
496
|
-
synth_ai/v0/lm/provider_support/suppress_logging.py,sha256=CKk8yGVWUZT6YLqzALOf4PZ3WyqMC_DiUTx6vF9O0zo,1037
|
|
497
|
-
synth_ai/v0/lm/structured_outputs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
498
|
-
synth_ai/v0/lm/structured_outputs/handler.py,sha256=DFpy6GfYbqn8aUH9Zca429MY-Ax64dVOSqyOVBbHtHc,17337
|
|
499
|
-
synth_ai/v0/lm/structured_outputs/inject.py,sha256=gm9jo7zsAb4bYxovbxAzZWCxL-pc8dezsXYzwupMvas,11495
|
|
500
|
-
synth_ai/v0/lm/structured_outputs/rehabilitate.py,sha256=uFETMFAR9PPUDGXRAGLyjqJ21EgW15izAP09ZQLYz04,7932
|
|
501
|
-
synth_ai/v0/lm/tools/__init__.py,sha256=3JM5vqZqKloaeHaxuO49C8A_0qljys3pQ1yt70WKhho,51
|
|
502
|
-
synth_ai/v0/lm/tools/base.py,sha256=sDiqopouPml_tEFKQXMZFl0M45JO-yJBWWjyaeAyV1Q,5722
|
|
503
|
-
synth_ai/v0/lm/vendors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
504
|
-
synth_ai/v0/lm/vendors/base.py,sha256=K9SmghoH_WoMtmx8Q1qrcKcj1VriWHrMm607tIUgNOI,2430
|
|
505
|
-
synth_ai/v0/lm/vendors/openai_standard.py,sha256=JmlXBJXffuwHO5U78MlNznWqTQKsSNyeTRsNxIeGkIo,34133
|
|
506
|
-
synth_ai/v0/lm/vendors/openai_standard_responses.py,sha256=Suz_OZBVnI2kFChaLOYuLIWwfA35nzwR0DPE4uMTMsA,10204
|
|
507
|
-
synth_ai/v0/lm/vendors/retries.py,sha256=Ti72rZWoJsO7Kj6QtCMwmubX65AM-K4USf86zh-K3Go,565
|
|
508
|
-
synth_ai/v0/lm/vendors/synth_client.py,sha256=hniQRpJQUAe50YSDeEslJhHeFObfiu1cQT0cOwSIq1o,28091
|
|
509
|
-
synth_ai/v0/lm/vendors/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
510
|
-
synth_ai/v0/lm/vendors/core/anthropic_api.py,sha256=uJ8zKJ1w4SpkMPASu5plsf50Gtr7LD-jqWgMiMvVZ7M,14985
|
|
511
|
-
synth_ai/v0/lm/vendors/core/gemini_api.py,sha256=wUDgNvaj5lcqUsowFOCuUU53eZ3G85Wa9yhAyMDQNCs,11097
|
|
512
|
-
synth_ai/v0/lm/vendors/core/mistral_api.py,sha256=kgYd-2f6CnUo6FZF6sCFpm38EYAWpHL37kW95CJsVUs,11890
|
|
513
|
-
synth_ai/v0/lm/vendors/core/openai_api.py,sha256=MbCPiFc6X_BChKk5coE5XsS-WHx3yIZuCeyUgLdADY8,8586
|
|
514
|
-
synth_ai/v0/lm/vendors/core/synth_dev_api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
|
-
synth_ai/v0/lm/vendors/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
516
|
-
synth_ai/v0/lm/vendors/local/ollama.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
-
synth_ai/v0/lm/vendors/supported/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
518
|
-
synth_ai/v0/lm/vendors/supported/custom_endpoint.py,sha256=6Cx9gOgNIe3FrJ9Rv4sv3KIngEeCbb63kmH6Yl2l_XM,15309
|
|
519
|
-
synth_ai/v0/lm/vendors/supported/deepseek.py,sha256=yfBq788epX9RSPHfrytbzMfYhXMTnGw1hX4b7W6xYEM,2335
|
|
520
|
-
synth_ai/v0/lm/vendors/supported/grok.py,sha256=zX_m16yDC9ssN7QQnvZnSYN2Yu6o8Pt13vzyuSpsZN4,2232
|
|
521
|
-
synth_ai/v0/lm/vendors/supported/groq.py,sha256=Q7-4Np6_WVxVrjzSi_Sl79eJfljudeV7ePw5vNuCpA8,386
|
|
522
|
-
synth_ai/v0/lm/vendors/supported/ollama.py,sha256=y6IQ3qdGuczDIw3O9I6AnLEFqAOMldzcNU_LL4SAcBc,469
|
|
523
|
-
synth_ai/v0/lm/vendors/supported/openrouter.py,sha256=KLfXzcNygZxYc3v-EKWqS_jCOTgB7c1D3Pu3paskqag,2579
|
|
524
|
-
synth_ai/v0/lm/vendors/supported/together.py,sha256=jPaXhyzAGi4afuS--b-NLd1Za0YUg6Y5Hzu1C7VeouI,340
|
|
525
|
-
synth_ai/v0/tracing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
526
|
-
synth_ai/v0/tracing/abstractions.py,sha256=pL9XCf9UEWdX4IRizzRK9XUNBtDeBYfkVD51F8UOB0s,6898
|
|
527
|
-
synth_ai/v0/tracing/base_client.py,sha256=IZpyuM-GIClvBBFA9iv4tpOjzY1QHF1m7vkNCYk7xLo,2931
|
|
528
|
-
synth_ai/v0/tracing/client_manager.py,sha256=rDHpOClkf1t0_6cJecQtr9IaaRmEJOCQ8StaiHyXq1E,4512
|
|
529
|
-
synth_ai/v0/tracing/config.py,sha256=ZjfJV1jMoJ6srdGMPtSaaOX7gz9KiyyxGn5p9QMrwHE,4042
|
|
530
|
-
synth_ai/v0/tracing/context.py,sha256=QZRgMgSWMcmZtQ4WDA7eCJdIAKbgU85vWDM-aiRUpCE,5113
|
|
531
|
-
synth_ai/v0/tracing/decorators.py,sha256=vAGItKhcdcCMenfFrnXoczl0iAki_uUvvT5n42pnAKk,30851
|
|
532
|
-
synth_ai/v0/tracing/immediate_client.py,sha256=M1J1zY9dC2u0Ta-xa6kK32mSa9g-va2Avu7hnB88tbo,6203
|
|
533
|
-
synth_ai/v0/tracing/local.py,sha256=sDNQ6ECVwZZkRlCC0_F33VOXuUUzZ1B0UVFBMKtN5R0,722
|
|
534
|
-
synth_ai/v0/tracing/log_client_base.py,sha256=Zl-dOknLd47xa-fh_3UBJkw1wF67uN1-4sm8N0Wl7CU,2297
|
|
535
|
-
synth_ai/v0/tracing/retry_queue.py,sha256=Crpt8ugbuxKfau3ioWt0jMJzsCafaxKPSC1X3gfPU34,6647
|
|
536
|
-
synth_ai/v0/tracing/trackers.py,sha256=I_5M9vAzFAsR_xKPGq_55yq2NkwztBZreMX8JhCK9UA,19005
|
|
537
|
-
synth_ai/v0/tracing/upload.py,sha256=v6Go0d-b-O9bd1FZ8oXsXHW1opc48svJ4AJukQYrI5E,13141
|
|
538
|
-
synth_ai/v0/tracing/utils.py,sha256=FXoMW9qOIk8-2qv_7WpVK2UG3_0AAGwi6fQQJ5Eldqk,306
|
|
539
|
-
synth_ai/v0/tracing/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
540
|
-
synth_ai/v0/tracing/events/manage.py,sha256=ZDXXP-ZwLH9LCsmw7Ru9o55d7bl_diPtJV78_p7hhxQ,5956
|
|
541
|
-
synth_ai/v0/tracing/events/scope.py,sha256=BuBkhSpVHUJt8iGT9HJZF82rbb88mQcd2vM2shg-w2I,2550
|
|
542
|
-
synth_ai/v0/tracing/events/store.py,sha256=0342lvAcalyJbVEIzQFaPuMQGgwiFm7M5rE6gr-G0E8,9041
|
|
543
|
-
synth_ai/v0/tracing_v1/__init__.py,sha256=AHaSAzOMVAML9T_E4OrO2K9BheZDiKBUU3uyfGxIKxc,461
|
|
544
|
-
synth_ai/v0/tracing_v1/abstractions.py,sha256=pL9XCf9UEWdX4IRizzRK9XUNBtDeBYfkVD51F8UOB0s,6898
|
|
545
|
-
synth_ai/v0/tracing_v1/base_client.py,sha256=IZpyuM-GIClvBBFA9iv4tpOjzY1QHF1m7vkNCYk7xLo,2931
|
|
546
|
-
synth_ai/v0/tracing_v1/client_manager.py,sha256=rDHpOClkf1t0_6cJecQtr9IaaRmEJOCQ8StaiHyXq1E,4512
|
|
547
|
-
synth_ai/v0/tracing_v1/config.py,sha256=ZjfJV1jMoJ6srdGMPtSaaOX7gz9KiyyxGn5p9QMrwHE,4042
|
|
548
|
-
synth_ai/v0/tracing_v1/context.py,sha256=QZRgMgSWMcmZtQ4WDA7eCJdIAKbgU85vWDM-aiRUpCE,5113
|
|
549
|
-
synth_ai/v0/tracing_v1/decorators.py,sha256=Hy_CqumvZxvyDoeLuZPB8_FE8BWKKwxtPtiino0JAIo,31704
|
|
550
|
-
synth_ai/v0/tracing_v1/immediate_client.py,sha256=M1J1zY9dC2u0Ta-xa6kK32mSa9g-va2Avu7hnB88tbo,6203
|
|
551
|
-
synth_ai/v0/tracing_v1/local.py,sha256=sDNQ6ECVwZZkRlCC0_F33VOXuUUzZ1B0UVFBMKtN5R0,722
|
|
552
|
-
synth_ai/v0/tracing_v1/log_client_base.py,sha256=Zl-dOknLd47xa-fh_3UBJkw1wF67uN1-4sm8N0Wl7CU,2297
|
|
553
|
-
synth_ai/v0/tracing_v1/retry_queue.py,sha256=P1XxTzZHBBPeFTHWSh_1oP5Byn4X3bNsXZqPc1rsu5U,6650
|
|
554
|
-
synth_ai/v0/tracing_v1/trackers.py,sha256=I_5M9vAzFAsR_xKPGq_55yq2NkwztBZreMX8JhCK9UA,19005
|
|
555
|
-
synth_ai/v0/tracing_v1/upload.py,sha256=gRMx0aRQHvO1-MEJAEvdTYH9cBvcPp_Z8r2nHADrBFM,18024
|
|
556
|
-
synth_ai/v0/tracing_v1/utils.py,sha256=FXoMW9qOIk8-2qv_7WpVK2UG3_0AAGwi6fQQJ5Eldqk,306
|
|
557
|
-
synth_ai/v0/tracing_v1/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
558
|
-
synth_ai/v0/tracing_v1/events/manage.py,sha256=ZDXXP-ZwLH9LCsmw7Ru9o55d7bl_diPtJV78_p7hhxQ,5956
|
|
559
|
-
synth_ai/v0/tracing_v1/events/scope.py,sha256=BuBkhSpVHUJt8iGT9HJZF82rbb88mQcd2vM2shg-w2I,2550
|
|
560
|
-
synth_ai/v0/tracing_v1/events/store.py,sha256=0342lvAcalyJbVEIzQFaPuMQGgwiFm7M5rE6gr-G0E8,9041
|
|
561
|
-
synth_ai/v0/tracing_v3/__init__.py,sha256=DtQJ-s3OhtgkWDlhGLIB4xWofWHBo44iCm-e_unvQMk,291
|
|
562
|
-
synth_ai/v0/tracing_v3/abstractions.py,sha256=7IHKkzicFEJ4UXJbodK11Pi8YYq7Vt8Ev_6wgnsMiLA,110
|
|
563
|
-
synth_ai/v0/tracing_v3/decorators.py,sha256=fRyVBKEbxAPZoDsBH7t8OVLVixvgD_Lw_1ONF1TuZxU,108
|
|
564
|
-
synth_ai/v0/tracing_v3/llm_call_record_helpers.py,sha256=JYSpGtW-RC-DnhUIPdVADNF3rK5x8Tl8DOymbmRI99I,121
|
|
565
|
-
synth_ai/v0/tracing_v3/session_tracer.py,sha256=TSUzb_fUUlpwOqFE1X-Fs14nG2CNe7MZLKOvH7cV2kE,112
|
|
566
|
-
synth_ai-0.2.9.dev11.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
|
|
567
|
-
synth_ai-0.2.9.dev11.dist-info/METADATA,sha256=iiaobkSVcBeR7HxAXFmHhPCUtEoI6tt0pOkfam54y2Y,5974
|
|
568
|
-
synth_ai-0.2.9.dev11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
569
|
-
synth_ai-0.2.9.dev11.dist-info/entry_points.txt,sha256=Neq-3bT7TAijjgOIR77pKL-WYg6TWBDeO8pp_nL4vGY,91
|
|
570
|
-
synth_ai-0.2.9.dev11.dist-info/top_level.txt,sha256=2cSIzycTn0tayJXquy_uquOpwcd8eKqKPnVIwnRmwDE,24
|
|
571
|
-
synth_ai-0.2.9.dev11.dist-info/RECORD,,
|