fleet-python 0.2.105__tar.gz → 0.2.106__tar.gz
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.
- {fleet_python-0.2.105/fleet_python.egg-info → fleet_python-0.2.106}/PKG-INFO +1 -1
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/client.py +0 -4
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/models.py +0 -2
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/tasks.py +0 -6
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/client.py +0 -4
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/models.py +0 -4
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/tasks.py +0 -6
- {fleet_python-0.2.105 → fleet_python-0.2.106/fleet_python.egg-info}/PKG-INFO +1 -1
- {fleet_python-0.2.105 → fleet_python-0.2.106}/pyproject.toml +1 -1
- {fleet_python-0.2.105 → fleet_python-0.2.106}/LICENSE +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/README.md +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/diff_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/dsl_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/exampleResume.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_account.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_action_log.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_mcp_anthropic.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_mcp_openai.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_sync.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_task.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_tasks.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/example_verifier.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/export_tasks.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/export_tasks_filtered.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/fetch_tasks.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/gemini_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/import_tasks.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/iterate_verifiers.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/json_tasks_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/nova_act_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/openai_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/openai_simple_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/query_builder_example.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/quickstart.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/examples/test_cdp_logging.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/base.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/env/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/env/client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/exceptions.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/global_client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/instance/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/instance/base.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/instance/client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/resources/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/resources/api.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/resources/base.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/resources/browser.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/resources/mcp.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/resources/sqlite.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/verifiers/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/verifiers/bundler.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/_async/verifiers/verifier.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/Dockerfile +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/agent.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/mcp/main.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/mcp_server/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/mcp_server/main.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/mcp_server/tools.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/requirements.txt +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/gemini_cua/start.sh +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/orchestrator.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/types.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/agent/utils.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/base.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/cli.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/config.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/env/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/env/client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/eval/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/eval/uploader.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/exceptions.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/global_client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/instance/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/instance/base.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/instance/client.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/instance/models.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/proxy/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/proxy/proxy.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/proxy/whitelist.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/resources/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/resources/api.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/resources/base.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/resources/browser.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/resources/mcp.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/resources/sqlite.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/types.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/utils/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/utils/http_logging.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/utils/logging.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/utils/playwright.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/bundler.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/code.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/db.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/decorator.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/parse.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/sql_differ.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet/verifiers/verifier.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet_python.egg-info/SOURCES.txt +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet_python.egg-info/dependency_links.txt +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet_python.egg-info/entry_points.txt +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet_python.egg-info/requires.txt +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/fleet_python.egg-info/top_level.txt +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/scripts/fix_sync_imports.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/scripts/unasync.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/setup.cfg +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/__init__.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_app_method.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_expect_exactly.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_expect_only.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_instance_dispatch.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_sqlite_resource_dual_mode.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_sqlite_shared_memory_behavior.py +0 -0
- {fleet_python-0.2.105 → fleet_python-0.2.106}/tests/test_verifier_from_string.py +0 -0
|
@@ -941,8 +941,6 @@ class AsyncFleet:
|
|
|
941
941
|
verifier_sha=verifier_sha, # Set verifier_sha
|
|
942
942
|
verifier_runtime_version=verifier_runtime_version, # Set verifier_runtime_version
|
|
943
943
|
metadata=task_json.get("metadata", {}), # Default empty metadata
|
|
944
|
-
writer_metadata=task_json.get("writer_metadata"), # Writer metadata
|
|
945
|
-
qa_metadata=task_json.get("qa_metadata"), # QA metadata
|
|
946
944
|
output_json_schema=task_json.get("output_json_schema"), # JSON schema for output
|
|
947
945
|
)
|
|
948
946
|
return task
|
|
@@ -1117,8 +1115,6 @@ class AsyncFleet:
|
|
|
1117
1115
|
verifier_sha=verifier_sha, # Set verifier_sha
|
|
1118
1116
|
verifier_runtime_version=verifier_runtime_version, # Set verifier_runtime_version
|
|
1119
1117
|
metadata=metadata,
|
|
1120
|
-
writer_metadata=getattr(task_response, "writer_metadata", None), # Writer metadata
|
|
1121
|
-
qa_metadata=getattr(task_response, "qa_metadata", None), # QA metadata
|
|
1122
1118
|
output_json_schema=getattr(task_response, "output_json_schema", None), # Get output_json_schema if available
|
|
1123
1119
|
)
|
|
1124
1120
|
tasks.append(task)
|
|
@@ -199,8 +199,6 @@ class TaskResponse(BaseModel):
|
|
|
199
199
|
env_variables: Optional[Dict[str, Any]] = Field(None, title="Env Variables")
|
|
200
200
|
verifier: Optional[VerifierData] = Field(None, title="Verifier")
|
|
201
201
|
metadata: Optional[Dict[str, Any]] = Field(None, title="Metadata")
|
|
202
|
-
writer_metadata: Optional[Dict[str, Any]] = Field(None, title="Writer Metadata")
|
|
203
|
-
qa_metadata: Optional[Dict[str, Any]] = Field(None, title="QA Metadata")
|
|
204
202
|
output_json_schema: Optional[Dict[str, Any]] = Field(None, title="Output Json Schema")
|
|
205
203
|
|
|
206
204
|
|
|
@@ -38,12 +38,6 @@ class Task(BaseModel):
|
|
|
38
38
|
metadata: Optional[Dict[str, Any]] = Field(
|
|
39
39
|
default_factory=dict, description="Additional task metadata"
|
|
40
40
|
)
|
|
41
|
-
writer_metadata: Optional[Dict[str, Any]] = Field(
|
|
42
|
-
None, description="Metadata filled by task writer"
|
|
43
|
-
)
|
|
44
|
-
qa_metadata: Optional[Dict[str, Any]] = Field(
|
|
45
|
-
None, description="Metadata filled by QA reviewer"
|
|
46
|
-
)
|
|
47
41
|
output_json_schema: Optional[Dict[str, Any]] = Field(
|
|
48
42
|
None, description="JSON schema for expected output format"
|
|
49
43
|
)
|
|
@@ -953,8 +953,6 @@ class Fleet:
|
|
|
953
953
|
verifier_sha=verifier_sha, # Set verifier_sha
|
|
954
954
|
verifier_runtime_version=verifier_runtime_version, # Set verifier_runtime_version
|
|
955
955
|
metadata=task_json.get("metadata", {}), # Default empty metadata
|
|
956
|
-
writer_metadata=task_json.get("writer_metadata"), # Writer metadata
|
|
957
|
-
qa_metadata=task_json.get("qa_metadata"), # QA metadata
|
|
958
956
|
output_json_schema=task_json.get("output_json_schema"), # JSON schema for output
|
|
959
957
|
)
|
|
960
958
|
return task
|
|
@@ -1136,8 +1134,6 @@ class Fleet:
|
|
|
1136
1134
|
verifier_sha=verifier_sha, # Set verifier_sha
|
|
1137
1135
|
verifier_runtime_version=verifier_runtime_version, # Set verifier_runtime_version
|
|
1138
1136
|
metadata=metadata,
|
|
1139
|
-
writer_metadata=getattr(task_response, "writer_metadata", None), # Writer metadata
|
|
1140
|
-
qa_metadata=getattr(task_response, "qa_metadata", None), # QA metadata
|
|
1141
1137
|
output_json_schema=getattr(task_response, "output_json_schema", None), # Get output_json_schema if available
|
|
1142
1138
|
)
|
|
1143
1139
|
tasks.append(task)
|
|
@@ -205,8 +205,6 @@ class TaskResponse(BaseModel):
|
|
|
205
205
|
env_variables: Optional[Dict[str, Any]] = Field(None, title="Env Variables")
|
|
206
206
|
verifier: Optional[VerifierData] = Field(None, title="Verifier")
|
|
207
207
|
metadata: Optional[Dict[str, Any]] = Field(None, title="Metadata")
|
|
208
|
-
writer_metadata: Optional[Dict[str, Any]] = Field(None, title="Writer Metadata")
|
|
209
|
-
qa_metadata: Optional[Dict[str, Any]] = Field(None, title="QA Metadata")
|
|
210
208
|
output_json_schema: Optional[Dict[str, Any]] = Field(
|
|
211
209
|
None, title="Output Json Schema"
|
|
212
210
|
)
|
|
@@ -511,8 +509,6 @@ class TaskInfo(BaseModel):
|
|
|
511
509
|
verifier_func: Optional[str] = Field(None, title="Verifier Func")
|
|
512
510
|
verifier_id: Optional[str] = Field(None, title="Verifier Id")
|
|
513
511
|
metadata: Optional[Dict[str, Any]] = Field(None, title="Metadata")
|
|
514
|
-
writer_metadata: Optional[Dict[str, Any]] = Field(None, title="Writer Metadata")
|
|
515
|
-
qa_metadata: Optional[Dict[str, Any]] = Field(None, title="QA Metadata")
|
|
516
512
|
|
|
517
513
|
|
|
518
514
|
class TaskSessionGroup(BaseModel):
|
|
@@ -40,12 +40,6 @@ class Task(BaseModel):
|
|
|
40
40
|
metadata: Optional[Dict[str, Any]] = Field(
|
|
41
41
|
default_factory=dict, description="Additional task metadata"
|
|
42
42
|
)
|
|
43
|
-
writer_metadata: Optional[Dict[str, Any]] = Field(
|
|
44
|
-
None, description="Metadata filled by task writer"
|
|
45
|
-
)
|
|
46
|
-
qa_metadata: Optional[Dict[str, Any]] = Field(
|
|
47
|
-
None, description="Metadata filled by QA reviewer"
|
|
48
|
-
)
|
|
49
43
|
output_json_schema: Optional[Dict[str, Any]] = Field(
|
|
50
44
|
None, description="JSON schema for expected output format"
|
|
51
45
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|