pydantic-ai 1.0.1__tar.gz → 1.0.3__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.
Potentially problematic release.
This version of pydantic-ai might be problematic. Click here for more details.
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/PKG-INFO +5 -3
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/pyproject.toml +1 -0
- pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_iter_in_workflow.yaml +78 -0
- pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_override_tools_in_workflow.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_run_in_workflow_with_toolsets.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_run_sync_in_workflow.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_with_hitl_tool_sync.yaml +249 -0
- pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_model_stream_direct.yaml +78 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_audio_resource_link.yaml +64 -25
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_complex_agent_run.yaml +955 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_complex_agent_run_in_workflow.yaml +929 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_complex_agent_run_stream_in_workflow.yaml +929 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_multiple_agents.yaml +1009 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_simple_agent_run_in_workflow.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_iter.yaml +78 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_override_deps_in_workflow.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_run.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_run_stream.yaml +78 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_run_sync.yaml +79 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_with_dataclass_deps_as_dict.yaml +195 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_with_hitl_tool.yaml +249 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_with_model_retry.yaml +335 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_with_non_dict_deps.yaml +95 -0
- pydantic_ai-1.0.3/tests/cassettes/test_temporal/test_temporal_agent_with_unserializable_deps_type.yaml +95 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_anthropic/test_anthropic_model_thinking_part_from_other_model.yaml +343 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_anthropic/test_anthropic_model_thinking_part_redacted.yaml +150 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_anthropic/test_anthropic_model_thinking_part_redacted_stream.yaml +129 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part_anthropic.yaml +184 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part_deepseek.yaml +165 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part_from_other_model.yaml +300 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part_redacted.yaml +110 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part_redacted_stream.yaml +128 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_cohere/test_cohere_model_thinking_part.yaml +301 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_google/test_google_model_thinking_part.yaml +354 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_google/test_google_model_thinking_part_from_other_model.yaml +362 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_google/test_google_model_thinking_part_iter.yaml +160 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_mistral/test_mistral_model_thinking_part.yaml +296 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_mistral/test_mistral_model_thinking_part_iter.yaml +736 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_openai/test_openai_model_thinking_part.yaml +275 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_openai_responses/test_openai_responses_model_thinking_part.yaml +374 -0
- pydantic_ai-1.0.3/tests/models/cassettes/test_openai_responses/test_openai_responses_thinking_part_iter.yaml +2353 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_anthropic.py +608 -58
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_bedrock.py +397 -17
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_cohere.py +28 -23
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_deepseek.py +21 -14
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_gemini.py +4 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_google.py +285 -64
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_groq.py +45 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_huggingface.py +29 -18
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_instrumented.py +74 -1
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_mistral.py +180 -66
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_openai.py +91 -34
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_openai_responses.py +111 -45
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_bedrock.py +9 -3
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_ag_ui.py +98 -3
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_agent.py +103 -3
- pydantic_ai-1.0.3/tests/test_dbos.py +1581 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_examples.py +1 -1
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_logfire.py +2 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_mcp.py +76 -13
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_messages.py +12 -4
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_temporal.py +10 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_tools.py +17 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_toolsets.py +24 -0
- pydantic_ai-1.0.1/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part.yaml +0 -206
- pydantic_ai-1.0.1/tests/models/cassettes/test_cohere/test_cohere_model_thinking_part.yaml +0 -290
- pydantic_ai-1.0.1/tests/models/cassettes/test_google/test_google_model_thinking_part.yaml +0 -139
- pydantic_ai-1.0.1/tests/models/cassettes/test_google/test_google_model_thinking_part_iter.yaml +0 -272
- pydantic_ai-1.0.1/tests/models/cassettes/test_mistral/test_mistral_model_thinking_part.yaml +0 -313
- pydantic_ai-1.0.1/tests/models/cassettes/test_openai/test_openai_model_thinking_part.yaml +0 -310
- pydantic_ai-1.0.1/tests/models/cassettes/test_openai_responses/test_openai_responses_model_thinking_part.yaml +0 -321
- pydantic_ai-1.0.1/tests/models/cassettes/test_openai_responses/test_openai_responses_thinking_part_iter.yaml +0 -1991
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/.gitignore +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/LICENSE +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/Makefile +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/README.md +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/__init__.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/assets/dummy.pdf +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/assets/kiwi.png +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/assets/marcelo.mp3 +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/assets/product_name.txt +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/assets/small_video.mp4 +0 -0
- {pydantic_ai-1.0.1/tests/cassettes/test_temporal → pydantic_ai-1.0.3/tests/cassettes/test_dbos}/test_complex_agent_run.yaml +0 -0
- {pydantic_ai-1.0.1/tests/cassettes/test_temporal → pydantic_ai-1.0.3/tests/cassettes/test_dbos}/test_complex_agent_run_in_workflow.yaml +0 -0
- {pydantic_ai-1.0.1/tests/cassettes/test_temporal → pydantic_ai-1.0.3/tests/cassettes/test_dbos}/test_complex_agent_run_stream_in_workflow.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_iter.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_iter.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_override_deps_in_workflow.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_override_deps_in_workflow.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_run.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_run.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_run_stream.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_run_stream.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_run_sync.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_run_sync.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_with_dataclass_deps_as_dict.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_with_dataclass_deps_as_dict.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_with_hitl_tool.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_with_hitl_tool.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_with_model_retry.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_with_model_retry.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_with_non_dict_deps.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_with_non_dict_deps.yaml +0 -0
- /pydantic_ai-1.0.1/tests/cassettes/test_temporal/test_temporal_agent_with_unserializable_deps_type.yaml → /pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_with_unserializable_deps_type.yaml +0 -0
- {pydantic_ai-1.0.1/tests/cassettes/test_temporal → pydantic_ai-1.0.3/tests/cassettes/test_dbos}/test_multiple_agents.yaml +0 -0
- {pydantic_ai-1.0.1/tests/cassettes/test_temporal → pydantic_ai-1.0.3/tests/cassettes/test_dbos}/test_simple_agent_run_in_workflow.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_agent_with_server_not_running.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_agent_with_stdio_server.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_audio_resource.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_dict.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_error.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_image.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_image_resource.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_image_resource_link.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_multiple_items.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_none.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_str.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_text_resource.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_mcp/test_tool_returning_text_resource_link.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[anthropic].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[bedrock].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[cohere].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[gemini].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[google].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[groq].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[mistral].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_settings/test_stop_settings[openai].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_temporal/test_logfire_plugin.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/cassettes/test_temporal/test_temporal_agent_sync_tool_activity_disabled.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/conftest.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/__init__.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_dataset.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_evaluator_base.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_evaluator_common.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_evaluator_context.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_evaluator_spec.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_evaluators.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_llm_as_a_judge.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_otel.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_render_numbers.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_reporting.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_reports.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/test_utils.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/evals/utils.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/example_modules/README.md +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/example_modules/bank_database.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/example_modules/fake_database.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/example_modules/mcp_server.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/example_modules/weather_service.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/ext/__init__.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/ext/test_langchain.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/__init__.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/test_file_persistence.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/test_graph.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/test_mermaid.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/test_persistence.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/test_state.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/graph/test_utils.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/import_examples.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/json_body_serializer.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/mcp_server.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/__init__.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_code_execution_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_model_empty_message_on_history.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_model_thinking_part.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_model_thinking_part_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_prompted_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_prompted_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_server_tool_pass_history_to_another_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_server_tool_receive_history_from_another_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_text_output_function.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_tool_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_tool_with_thinking.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_web_search_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_anthropic_web_search_tool_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_document_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_extra_headers.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_image_as_binary_content_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_image_url_input_invalid_mime_type.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_multiple_parallel_tool_calls.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_anthropic/test_text_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_anthropic_tool_with_thinking.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_empty_system_prompt.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_anthropic_model_without_tools.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_guardrail_config.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_iter_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_max_tokens.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_other_parameters.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_performance_config.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_retry.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_structured_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_thinking_part_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_model_top_p.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_bedrock_multiple_documents_in_history.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_text_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_text_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_video_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_bedrock/test_video_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_cohere/test_cohere_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_cohere/test_request_simple_success_with_vcr.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_deepseek/test_deepseek_model_thinking_part.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_deepseek/test_deepseek_model_thinking_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_download_item/test_download_item_application_octet_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_download_item/test_download_item_audio_mpeg.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_download_item/test_download_item_no_content_type.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_additional_properties_is_false.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_additional_properties_is_true.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_drop_exclusive_maximum.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_exclusive_minimum_and_maximum.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_model_thinking_part.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_native_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_native_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_prompted_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_prompted_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_prompted_output_with_tools.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_text_output_function.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_tool_config_any_with_tool_without_args.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_tool_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_gemini_youtube_video_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_image_as_binary_content_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_labels_are_ignored_with_gla_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_video_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini/test_video_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_labels.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[AudioUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[AudioUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[DocumentUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[DocumentUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[ImageUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[ImageUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[VideoUrl (YouTube)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[VideoUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input[VideoUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_gemini_vertex/test_url_input_force_download.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_builtin_tools_with_other_tools.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_builtin_code_execution_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_code_execution_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_empty_assistant_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_empty_user_prompt.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_iter_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_max_tokens.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_multiple_documents_in_history.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_receive_web_search_history_from_another_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_retry.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_safety_settings.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_server_tool_receive_history_from_another_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_structured_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_text_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_text_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_thinking_config.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_top_p.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_url_context_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_usage_limit_exceeded.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_usage_limit_not_exceeded.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_vertex_labels.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_vertex_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_video_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_video_as_binary_content_input_with_vendor_metadata.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_video_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_web_search_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_model_youtube_video_url_input_with_vendor_metadata.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_native_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_native_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_prompted_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_prompted_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_prompted_output_with_tools.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_text_output_function.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_timeout.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_tool_config_any_with_tool_without_args.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_tool_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[AudioUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[AudioUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[DocumentUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[DocumentUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[ImageUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[ImageUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[VideoUrl (YouTube)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[VideoUrl (gs)].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input[VideoUrl].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_url_input_force_download.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_google/test_google_vertexai_model_usage_limit_exceeded.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_extra_headers.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_groq_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_groq_model_thinking_part.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_groq_model_thinking_part_iter.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_groq_model_web_search_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_groq_native_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_groq_prompted_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_image_as_binary_content_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_tool_regular_error.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_tool_use_failed_error.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_groq/test_tool_use_failed_error_streaming.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_hf_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_hf_model_thinking_part.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_hf_model_thinking_part_iter.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_max_completion_tokens[Qwen-Qwen2.5-72B-Instruct].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_max_completion_tokens[deepseek-ai-DeepSeek-R1-0528].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_max_completion_tokens[meta-llama-Llama-3.3-70B-Instruct].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_request_simple_success_with_vcr.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_request_simple_usage.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_simple_completion.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_huggingface/test_stream_completion.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_mistral/test_image_as_binary_content_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_mistral/test_mistral_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_model_names/test_known_model_names.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_audio_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_compatible_api_with_tool_calls_without_id.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_document_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_document_as_binary_content_input_with_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_extra_headers.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_image_as_binary_content_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_image_url_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_invalid_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_max_completion_tokens[gpt-4.5-preview].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_max_completion_tokens[gpt-4o-mini].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_max_completion_tokens[o3-mini].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_multiple_agent_tool_calls.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_audio_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_instructions_with_tool_calls_keep_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_model_cerebras_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_model_cerebras_provider_harmony.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_model_cerebras_provider_qwen_3_coder.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_model_settings_temperature_ignored_on_gpt_5.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_model_without_system_prompt.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_native_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_native_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_o1_mini_system_role[developer].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_o1_mini_system_role[system].yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_prompted_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_prompted_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_text_output_function.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_tool_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_web_search_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_web_search_tool_model_not_supported.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_openai_web_search_tool_with_user_location.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_reasoning_model_with_temperature.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_system_prompt_role_o1_mini.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_text_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_user_id.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai/test_valid_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_audio_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_image_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_image_as_binary_content_tool_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_native_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_native_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_code_execution_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_code_execution_tool_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_document_as_binary_content_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_image_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_builtin_tools.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_http_error.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_instructions.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_retry.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_simple_response.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_simple_response_with_tool_call.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_web_search_tool.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_web_search_tool_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_web_search_tool_with_invalid_region.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_model_web_search_tool_with_user_location.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_output_type.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_reasoning_effort.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_reasoning_generate_summary.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_stream.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_system_prompt.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_text_document_url_input.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_openai_responses_verbosity.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_prompted_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_prompted_output_multiple.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_reasoning_model_with_temperature.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_text_output_function.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/cassettes/test_openai_responses/test_tool_output.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/mock_async_stream.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/mock_openai.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_download_item.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_fallback.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_gemini_vertex.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_mcp_sampling.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_model.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_model_function.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_model_names.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_model_request_parameters.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_model_settings.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/models/test_model_test.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/parts_from_messages.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/__init__.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/cassettes/test_azure/test_azure_provider_call.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/cassettes/test_google_vertex/test_vertexai_provider.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/cassettes/test_heroku/test_heroku_model_provider_claude_3_7_sonnet.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/cassettes/test_openrouter/test_openrouter_with_google_model.yaml +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_anthropic.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_azure.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_cerebras.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_cohere.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_deepseek.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_fireworks.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_github.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_google_gla.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_google_vertex.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_grok.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_groq.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_heroku.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_huggingface.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_litellm.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_mistral.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_moonshotai.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_ollama.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_openai.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_openrouter.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_provider_names.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_together.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/providers/test_vercel.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_a2a.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_builtin_tools.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_cli.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_deps.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_direct.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_format_as_xml.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_history_processor.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_json_body_serializer.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_live.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_parts_manager.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_settings.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_streaming.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_tenacity.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_thinking_part.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_usage_limits.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/test_utils.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/typed_agent.py +0 -0
- {pydantic_ai-1.0.1 → pydantic_ai-1.0.3}/tests/typed_graph.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pydantic-ai
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Agent Framework / shim to use Pydantic with LLMs
|
|
5
5
|
Project-URL: Homepage, https://ai.pydantic.dev
|
|
6
6
|
Project-URL: Source, https://github.com/pydantic/pydantic-ai
|
|
@@ -27,11 +27,13 @@ Classifier: Topic :: Internet
|
|
|
27
27
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
28
28
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
29
29
|
Requires-Python: >=3.10
|
|
30
|
-
Requires-Dist: pydantic-ai-slim[ag-ui,anthropic,bedrock,cli,cohere,evals,google,groq,huggingface,logfire,mcp,mistral,openai,retries,temporal,vertexai]==1.0.
|
|
30
|
+
Requires-Dist: pydantic-ai-slim[ag-ui,anthropic,bedrock,cli,cohere,evals,google,groq,huggingface,logfire,mcp,mistral,openai,retries,temporal,vertexai]==1.0.3
|
|
31
31
|
Provides-Extra: a2a
|
|
32
32
|
Requires-Dist: fasta2a>=0.4.1; extra == 'a2a'
|
|
33
|
+
Provides-Extra: dbos
|
|
34
|
+
Requires-Dist: pydantic-ai-slim[dbos]==1.0.3; extra == 'dbos'
|
|
33
35
|
Provides-Extra: examples
|
|
34
|
-
Requires-Dist: pydantic-ai-examples==1.0.
|
|
36
|
+
Requires-Dist: pydantic-ai-examples==1.0.3; extra == 'examples'
|
|
35
37
|
Description-Content-Type: text/markdown
|
|
36
38
|
|
|
37
39
|
<div align="center">
|
|
@@ -52,6 +52,7 @@ dependencies = [
|
|
|
52
52
|
[tool.hatch.metadata.hooks.uv-dynamic-versioning.optional-dependencies]
|
|
53
53
|
examples = ["pydantic-ai-examples=={{ version }}"]
|
|
54
54
|
a2a = ["fasta2a>=0.4.1"]
|
|
55
|
+
dbos = ["pydantic-ai-slim[dbos]=={{ version }}"]
|
|
55
56
|
|
|
56
57
|
[project.urls]
|
|
57
58
|
Homepage = "https://ai.pydantic.dev"
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
headers:
|
|
4
|
+
accept:
|
|
5
|
+
- application/json
|
|
6
|
+
accept-encoding:
|
|
7
|
+
- gzip, deflate
|
|
8
|
+
connection:
|
|
9
|
+
- keep-alive
|
|
10
|
+
content-length:
|
|
11
|
+
- '144'
|
|
12
|
+
content-type:
|
|
13
|
+
- application/json
|
|
14
|
+
host:
|
|
15
|
+
- api.openai.com
|
|
16
|
+
method: POST
|
|
17
|
+
parsed_body:
|
|
18
|
+
messages:
|
|
19
|
+
- content: What is the capital of Mexico?
|
|
20
|
+
role: user
|
|
21
|
+
model: gpt-4o
|
|
22
|
+
stream: true
|
|
23
|
+
stream_options:
|
|
24
|
+
include_usage: true
|
|
25
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
26
|
+
response:
|
|
27
|
+
body:
|
|
28
|
+
string: |+
|
|
29
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KhEoTT6u7JgGis"}
|
|
30
|
+
|
|
31
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"68kWLPsNVG6FC"}
|
|
32
|
+
|
|
33
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" capital"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6d1qUFRY"}
|
|
34
|
+
|
|
35
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Q7kmEmvYuS4Nk"}
|
|
36
|
+
|
|
37
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" Mexico"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KrDQdBujM"}
|
|
38
|
+
|
|
39
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qCG5yEQHHMYd2"}
|
|
40
|
+
|
|
41
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" Mexico"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uFnoTvoy9"}
|
|
42
|
+
|
|
43
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" City"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bdnHY6qXdKt"}
|
|
44
|
+
|
|
45
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2WeZHWZ8r9jetpK"}
|
|
46
|
+
|
|
47
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"7LC080uo8W"}
|
|
48
|
+
|
|
49
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[],"usage":{"prompt_tokens":14,"completion_tokens":8,"total_tokens":22,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":""}
|
|
50
|
+
|
|
51
|
+
data: [DONE]
|
|
52
|
+
|
|
53
|
+
headers:
|
|
54
|
+
access-control-expose-headers:
|
|
55
|
+
- X-Request-ID
|
|
56
|
+
alt-svc:
|
|
57
|
+
- h3=":443"; ma=86400
|
|
58
|
+
connection:
|
|
59
|
+
- keep-alive
|
|
60
|
+
content-type:
|
|
61
|
+
- text/event-stream; charset=utf-8
|
|
62
|
+
openai-organization:
|
|
63
|
+
- pydantic-28gund
|
|
64
|
+
openai-processing-ms:
|
|
65
|
+
- '259'
|
|
66
|
+
openai-project:
|
|
67
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
68
|
+
openai-version:
|
|
69
|
+
- '2020-10-01'
|
|
70
|
+
strict-transport-security:
|
|
71
|
+
- max-age=31536000; includeSubDomains; preload
|
|
72
|
+
transfer-encoding:
|
|
73
|
+
- chunked
|
|
74
|
+
status:
|
|
75
|
+
code: 200
|
|
76
|
+
message: OK
|
|
77
|
+
version: 1
|
|
78
|
+
...
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
headers:
|
|
4
|
+
accept:
|
|
5
|
+
- application/json
|
|
6
|
+
accept-encoding:
|
|
7
|
+
- gzip, deflate
|
|
8
|
+
connection:
|
|
9
|
+
- keep-alive
|
|
10
|
+
content-length:
|
|
11
|
+
- '105'
|
|
12
|
+
content-type:
|
|
13
|
+
- application/json
|
|
14
|
+
host:
|
|
15
|
+
- api.openai.com
|
|
16
|
+
method: POST
|
|
17
|
+
parsed_body:
|
|
18
|
+
messages:
|
|
19
|
+
- content: What is the capital of Mexico?
|
|
20
|
+
role: user
|
|
21
|
+
model: gpt-4o
|
|
22
|
+
stream: false
|
|
23
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
24
|
+
response:
|
|
25
|
+
headers:
|
|
26
|
+
access-control-expose-headers:
|
|
27
|
+
- X-Request-ID
|
|
28
|
+
alt-svc:
|
|
29
|
+
- h3=":443"; ma=86400
|
|
30
|
+
connection:
|
|
31
|
+
- keep-alive
|
|
32
|
+
content-length:
|
|
33
|
+
- '838'
|
|
34
|
+
content-type:
|
|
35
|
+
- application/json
|
|
36
|
+
openai-organization:
|
|
37
|
+
- pydantic-28gund
|
|
38
|
+
openai-processing-ms:
|
|
39
|
+
- '467'
|
|
40
|
+
openai-project:
|
|
41
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
42
|
+
openai-version:
|
|
43
|
+
- '2020-10-01'
|
|
44
|
+
strict-transport-security:
|
|
45
|
+
- max-age=31536000; includeSubDomains; preload
|
|
46
|
+
transfer-encoding:
|
|
47
|
+
- chunked
|
|
48
|
+
parsed_body:
|
|
49
|
+
choices:
|
|
50
|
+
- finish_reason: stop
|
|
51
|
+
index: 0
|
|
52
|
+
logprobs: null
|
|
53
|
+
message:
|
|
54
|
+
annotations: []
|
|
55
|
+
content: The capital of Mexico is Mexico City.
|
|
56
|
+
refusal: null
|
|
57
|
+
role: assistant
|
|
58
|
+
created: 1754937502
|
|
59
|
+
id: chatcmpl-C3RhWZ6jbzOaAe9fKOSr5lWGY5Qi2
|
|
60
|
+
model: gpt-4o-2024-08-06
|
|
61
|
+
object: chat.completion
|
|
62
|
+
service_tier: default
|
|
63
|
+
system_fingerprint: fp_ff25b2783a
|
|
64
|
+
usage:
|
|
65
|
+
completion_tokens: 8
|
|
66
|
+
completion_tokens_details:
|
|
67
|
+
accepted_prediction_tokens: 0
|
|
68
|
+
audio_tokens: 0
|
|
69
|
+
reasoning_tokens: 0
|
|
70
|
+
rejected_prediction_tokens: 0
|
|
71
|
+
prompt_tokens: 14
|
|
72
|
+
prompt_tokens_details:
|
|
73
|
+
audio_tokens: 0
|
|
74
|
+
cached_tokens: 0
|
|
75
|
+
total_tokens: 22
|
|
76
|
+
status:
|
|
77
|
+
code: 200
|
|
78
|
+
message: OK
|
|
79
|
+
version: 1
|
pydantic_ai-1.0.3/tests/cassettes/test_dbos/test_dbos_agent_run_in_workflow_with_toolsets.yaml
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
headers:
|
|
4
|
+
accept:
|
|
5
|
+
- application/json
|
|
6
|
+
accept-encoding:
|
|
7
|
+
- gzip, deflate
|
|
8
|
+
connection:
|
|
9
|
+
- keep-alive
|
|
10
|
+
content-length:
|
|
11
|
+
- '105'
|
|
12
|
+
content-type:
|
|
13
|
+
- application/json
|
|
14
|
+
host:
|
|
15
|
+
- api.openai.com
|
|
16
|
+
method: POST
|
|
17
|
+
parsed_body:
|
|
18
|
+
messages:
|
|
19
|
+
- content: What is the capital of Mexico?
|
|
20
|
+
role: user
|
|
21
|
+
model: gpt-4o
|
|
22
|
+
stream: false
|
|
23
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
24
|
+
response:
|
|
25
|
+
headers:
|
|
26
|
+
access-control-expose-headers:
|
|
27
|
+
- X-Request-ID
|
|
28
|
+
alt-svc:
|
|
29
|
+
- h3=":443"; ma=86400
|
|
30
|
+
connection:
|
|
31
|
+
- keep-alive
|
|
32
|
+
content-length:
|
|
33
|
+
- '838'
|
|
34
|
+
content-type:
|
|
35
|
+
- application/json
|
|
36
|
+
openai-organization:
|
|
37
|
+
- pydantic-28gund
|
|
38
|
+
openai-processing-ms:
|
|
39
|
+
- '580'
|
|
40
|
+
openai-project:
|
|
41
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
42
|
+
openai-version:
|
|
43
|
+
- '2020-10-01'
|
|
44
|
+
strict-transport-security:
|
|
45
|
+
- max-age=31536000; includeSubDomains; preload
|
|
46
|
+
transfer-encoding:
|
|
47
|
+
- chunked
|
|
48
|
+
parsed_body:
|
|
49
|
+
choices:
|
|
50
|
+
- finish_reason: stop
|
|
51
|
+
index: 0
|
|
52
|
+
logprobs: null
|
|
53
|
+
message:
|
|
54
|
+
annotations: []
|
|
55
|
+
content: The capital of Mexico is Mexico City.
|
|
56
|
+
refusal: null
|
|
57
|
+
role: assistant
|
|
58
|
+
created: 1754688958
|
|
59
|
+
id: chatcmpl-C2P2k1mRRz7KMAtppLZz83Lyy33Jl
|
|
60
|
+
model: gpt-4o-2024-08-06
|
|
61
|
+
object: chat.completion
|
|
62
|
+
service_tier: default
|
|
63
|
+
system_fingerprint: fp_ff25b2783a
|
|
64
|
+
usage:
|
|
65
|
+
completion_tokens: 8
|
|
66
|
+
completion_tokens_details:
|
|
67
|
+
accepted_prediction_tokens: 0
|
|
68
|
+
audio_tokens: 0
|
|
69
|
+
reasoning_tokens: 0
|
|
70
|
+
rejected_prediction_tokens: 0
|
|
71
|
+
prompt_tokens: 14
|
|
72
|
+
prompt_tokens_details:
|
|
73
|
+
audio_tokens: 0
|
|
74
|
+
cached_tokens: 0
|
|
75
|
+
total_tokens: 22
|
|
76
|
+
status:
|
|
77
|
+
code: 200
|
|
78
|
+
message: OK
|
|
79
|
+
version: 1
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
headers:
|
|
4
|
+
accept:
|
|
5
|
+
- application/json
|
|
6
|
+
accept-encoding:
|
|
7
|
+
- gzip, deflate
|
|
8
|
+
connection:
|
|
9
|
+
- keep-alive
|
|
10
|
+
content-length:
|
|
11
|
+
- '105'
|
|
12
|
+
content-type:
|
|
13
|
+
- application/json
|
|
14
|
+
host:
|
|
15
|
+
- api.openai.com
|
|
16
|
+
method: POST
|
|
17
|
+
parsed_body:
|
|
18
|
+
messages:
|
|
19
|
+
- content: What is the capital of Mexico?
|
|
20
|
+
role: user
|
|
21
|
+
model: gpt-4o
|
|
22
|
+
stream: false
|
|
23
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
24
|
+
response:
|
|
25
|
+
headers:
|
|
26
|
+
access-control-expose-headers:
|
|
27
|
+
- X-Request-ID
|
|
28
|
+
alt-svc:
|
|
29
|
+
- h3=":443"; ma=86400
|
|
30
|
+
connection:
|
|
31
|
+
- keep-alive
|
|
32
|
+
content-length:
|
|
33
|
+
- '838'
|
|
34
|
+
content-type:
|
|
35
|
+
- application/json
|
|
36
|
+
openai-organization:
|
|
37
|
+
- pydantic-28gund
|
|
38
|
+
openai-processing-ms:
|
|
39
|
+
- '466'
|
|
40
|
+
openai-project:
|
|
41
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
42
|
+
openai-version:
|
|
43
|
+
- '2020-10-01'
|
|
44
|
+
strict-transport-security:
|
|
45
|
+
- max-age=31536000; includeSubDomains; preload
|
|
46
|
+
transfer-encoding:
|
|
47
|
+
- chunked
|
|
48
|
+
parsed_body:
|
|
49
|
+
choices:
|
|
50
|
+
- finish_reason: stop
|
|
51
|
+
index: 0
|
|
52
|
+
logprobs: null
|
|
53
|
+
message:
|
|
54
|
+
annotations: []
|
|
55
|
+
content: The capital of Mexico is Mexico City.
|
|
56
|
+
refusal: null
|
|
57
|
+
role: assistant
|
|
58
|
+
created: 1754688941
|
|
59
|
+
id: chatcmpl-C2P2TVJ3Qoyk6ajLKjYZF8QDAwt50
|
|
60
|
+
model: gpt-4o-2024-08-06
|
|
61
|
+
object: chat.completion
|
|
62
|
+
service_tier: default
|
|
63
|
+
system_fingerprint: fp_ff25b2783a
|
|
64
|
+
usage:
|
|
65
|
+
completion_tokens: 8
|
|
66
|
+
completion_tokens_details:
|
|
67
|
+
accepted_prediction_tokens: 0
|
|
68
|
+
audio_tokens: 0
|
|
69
|
+
reasoning_tokens: 0
|
|
70
|
+
rejected_prediction_tokens: 0
|
|
71
|
+
prompt_tokens: 14
|
|
72
|
+
prompt_tokens_details:
|
|
73
|
+
audio_tokens: 0
|
|
74
|
+
cached_tokens: 0
|
|
75
|
+
total_tokens: 22
|
|
76
|
+
status:
|
|
77
|
+
code: 200
|
|
78
|
+
message: OK
|
|
79
|
+
version: 1
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
headers:
|
|
4
|
+
accept:
|
|
5
|
+
- application/json
|
|
6
|
+
accept-encoding:
|
|
7
|
+
- gzip, deflate
|
|
8
|
+
connection:
|
|
9
|
+
- keep-alive
|
|
10
|
+
content-length:
|
|
11
|
+
- '639'
|
|
12
|
+
content-type:
|
|
13
|
+
- application/json
|
|
14
|
+
host:
|
|
15
|
+
- api.openai.com
|
|
16
|
+
method: POST
|
|
17
|
+
parsed_body:
|
|
18
|
+
messages:
|
|
19
|
+
- content: Just call tools without asking for confirmation.
|
|
20
|
+
role: system
|
|
21
|
+
- content: Delete the file `.env` and create `test.txt`
|
|
22
|
+
role: user
|
|
23
|
+
model: gpt-4o
|
|
24
|
+
stream: false
|
|
25
|
+
tool_choice: auto
|
|
26
|
+
tools:
|
|
27
|
+
- function:
|
|
28
|
+
description: ''
|
|
29
|
+
name: create_file
|
|
30
|
+
parameters:
|
|
31
|
+
additionalProperties: false
|
|
32
|
+
properties:
|
|
33
|
+
path:
|
|
34
|
+
type: string
|
|
35
|
+
required:
|
|
36
|
+
- path
|
|
37
|
+
type: object
|
|
38
|
+
strict: true
|
|
39
|
+
type: function
|
|
40
|
+
- function:
|
|
41
|
+
description: ''
|
|
42
|
+
name: delete_file
|
|
43
|
+
parameters:
|
|
44
|
+
additionalProperties: false
|
|
45
|
+
properties:
|
|
46
|
+
path:
|
|
47
|
+
type: string
|
|
48
|
+
required:
|
|
49
|
+
- path
|
|
50
|
+
type: object
|
|
51
|
+
strict: true
|
|
52
|
+
type: function
|
|
53
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
54
|
+
response:
|
|
55
|
+
headers:
|
|
56
|
+
access-control-expose-headers:
|
|
57
|
+
- X-Request-ID
|
|
58
|
+
alt-svc:
|
|
59
|
+
- h3=":443"; ma=86400
|
|
60
|
+
connection:
|
|
61
|
+
- keep-alive
|
|
62
|
+
content-length:
|
|
63
|
+
- '1319'
|
|
64
|
+
content-type:
|
|
65
|
+
- application/json
|
|
66
|
+
openai-organization:
|
|
67
|
+
- pydantic-28gund
|
|
68
|
+
openai-processing-ms:
|
|
69
|
+
- '737'
|
|
70
|
+
openai-project:
|
|
71
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
72
|
+
openai-version:
|
|
73
|
+
- '2020-10-01'
|
|
74
|
+
strict-transport-security:
|
|
75
|
+
- max-age=31536000; includeSubDomains; preload
|
|
76
|
+
transfer-encoding:
|
|
77
|
+
- chunked
|
|
78
|
+
parsed_body:
|
|
79
|
+
choices:
|
|
80
|
+
- finish_reason: tool_calls
|
|
81
|
+
index: 0
|
|
82
|
+
logprobs: null
|
|
83
|
+
message:
|
|
84
|
+
annotations: []
|
|
85
|
+
content: null
|
|
86
|
+
refusal: null
|
|
87
|
+
role: assistant
|
|
88
|
+
tool_calls:
|
|
89
|
+
- function:
|
|
90
|
+
arguments: '{"path": ".env"}'
|
|
91
|
+
name: delete_file
|
|
92
|
+
id: call_jYdIdRZHxZTn5bWCq5jlMrJi
|
|
93
|
+
type: function
|
|
94
|
+
- function:
|
|
95
|
+
arguments: '{"path": "test.txt"}'
|
|
96
|
+
name: create_file
|
|
97
|
+
id: call_TmlTVWQbzrXCZ4jNsCVNbNqu
|
|
98
|
+
type: function
|
|
99
|
+
created: 1756419063
|
|
100
|
+
id: chatcmpl-C9f7f1SbHRzcwlJwrYKdSonTRWPvV
|
|
101
|
+
model: gpt-4o-2024-08-06
|
|
102
|
+
object: chat.completion
|
|
103
|
+
service_tier: default
|
|
104
|
+
system_fingerprint: fp_df0f7b956c
|
|
105
|
+
usage:
|
|
106
|
+
completion_tokens: 46
|
|
107
|
+
completion_tokens_details:
|
|
108
|
+
accepted_prediction_tokens: 0
|
|
109
|
+
audio_tokens: 0
|
|
110
|
+
reasoning_tokens: 0
|
|
111
|
+
rejected_prediction_tokens: 0
|
|
112
|
+
prompt_tokens: 71
|
|
113
|
+
prompt_tokens_details:
|
|
114
|
+
audio_tokens: 0
|
|
115
|
+
cached_tokens: 0
|
|
116
|
+
total_tokens: 117
|
|
117
|
+
status:
|
|
118
|
+
code: 200
|
|
119
|
+
message: OK
|
|
120
|
+
- request:
|
|
121
|
+
headers:
|
|
122
|
+
accept:
|
|
123
|
+
- application/json
|
|
124
|
+
accept-encoding:
|
|
125
|
+
- gzip, deflate
|
|
126
|
+
connection:
|
|
127
|
+
- keep-alive
|
|
128
|
+
content-length:
|
|
129
|
+
- '1109'
|
|
130
|
+
content-type:
|
|
131
|
+
- application/json
|
|
132
|
+
cookie:
|
|
133
|
+
- __cf_bm=mLR5rPRuew3fXXRgovBj3Ir6vRflwQucmAT8xYCnZaA-1756419064-1.0.1.1-HvvEmDcDOmavm0vBqLo_ZG_Bjh6B2CgT.etvrYCBiezHow_0xNZ64xqybhJl_NViSVDNXuaXviCcDgIZg13KgsWp0J_qNORRiVIHxO2UAO4;
|
|
134
|
+
_cfuvid=536Zye1eyyVQS9C8BV6AAFwv4vaW.H4o2O4LK_228oc-1756419064420-0.0.1.1-604800000
|
|
135
|
+
host:
|
|
136
|
+
- api.openai.com
|
|
137
|
+
method: POST
|
|
138
|
+
parsed_body:
|
|
139
|
+
messages:
|
|
140
|
+
- content: Just call tools without asking for confirmation.
|
|
141
|
+
role: system
|
|
142
|
+
- content: Delete the file `.env` and create `test.txt`
|
|
143
|
+
role: user
|
|
144
|
+
- content: null
|
|
145
|
+
role: assistant
|
|
146
|
+
tool_calls:
|
|
147
|
+
- function:
|
|
148
|
+
arguments: '{"path": ".env"}'
|
|
149
|
+
name: delete_file
|
|
150
|
+
id: call_jYdIdRZHxZTn5bWCq5jlMrJi
|
|
151
|
+
type: function
|
|
152
|
+
- function:
|
|
153
|
+
arguments: '{"path": "test.txt"}'
|
|
154
|
+
name: create_file
|
|
155
|
+
id: call_TmlTVWQbzrXCZ4jNsCVNbNqu
|
|
156
|
+
type: function
|
|
157
|
+
- content: 'true'
|
|
158
|
+
role: tool
|
|
159
|
+
tool_call_id: call_jYdIdRZHxZTn5bWCq5jlMrJi
|
|
160
|
+
- content: Success
|
|
161
|
+
role: tool
|
|
162
|
+
tool_call_id: call_TmlTVWQbzrXCZ4jNsCVNbNqu
|
|
163
|
+
model: gpt-4o
|
|
164
|
+
stream: false
|
|
165
|
+
tool_choice: auto
|
|
166
|
+
tools:
|
|
167
|
+
- function:
|
|
168
|
+
description: ''
|
|
169
|
+
name: create_file
|
|
170
|
+
parameters:
|
|
171
|
+
additionalProperties: false
|
|
172
|
+
properties:
|
|
173
|
+
path:
|
|
174
|
+
type: string
|
|
175
|
+
required:
|
|
176
|
+
- path
|
|
177
|
+
type: object
|
|
178
|
+
strict: true
|
|
179
|
+
type: function
|
|
180
|
+
- function:
|
|
181
|
+
description: ''
|
|
182
|
+
name: delete_file
|
|
183
|
+
parameters:
|
|
184
|
+
additionalProperties: false
|
|
185
|
+
properties:
|
|
186
|
+
path:
|
|
187
|
+
type: string
|
|
188
|
+
required:
|
|
189
|
+
- path
|
|
190
|
+
type: object
|
|
191
|
+
strict: true
|
|
192
|
+
type: function
|
|
193
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
194
|
+
response:
|
|
195
|
+
headers:
|
|
196
|
+
access-control-expose-headers:
|
|
197
|
+
- X-Request-ID
|
|
198
|
+
alt-svc:
|
|
199
|
+
- h3=":443"; ma=86400
|
|
200
|
+
connection:
|
|
201
|
+
- keep-alive
|
|
202
|
+
content-length:
|
|
203
|
+
- '882'
|
|
204
|
+
content-type:
|
|
205
|
+
- application/json
|
|
206
|
+
openai-organization:
|
|
207
|
+
- pydantic-28gund
|
|
208
|
+
openai-processing-ms:
|
|
209
|
+
- '624'
|
|
210
|
+
openai-project:
|
|
211
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
212
|
+
openai-version:
|
|
213
|
+
- '2020-10-01'
|
|
214
|
+
strict-transport-security:
|
|
215
|
+
- max-age=31536000; includeSubDomains; preload
|
|
216
|
+
transfer-encoding:
|
|
217
|
+
- chunked
|
|
218
|
+
parsed_body:
|
|
219
|
+
choices:
|
|
220
|
+
- finish_reason: stop
|
|
221
|
+
index: 0
|
|
222
|
+
logprobs: null
|
|
223
|
+
message:
|
|
224
|
+
annotations: []
|
|
225
|
+
content: The file `.env` has been deleted and `test.txt` has been created successfully.
|
|
226
|
+
refusal: null
|
|
227
|
+
role: assistant
|
|
228
|
+
created: 1756419066
|
|
229
|
+
id: chatcmpl-C9f7iBeeNNBazDCMa7RSx3EFtiZoR
|
|
230
|
+
model: gpt-4o-2024-08-06
|
|
231
|
+
object: chat.completion
|
|
232
|
+
service_tier: default
|
|
233
|
+
system_fingerprint: fp_80956533cb
|
|
234
|
+
usage:
|
|
235
|
+
completion_tokens: 19
|
|
236
|
+
completion_tokens_details:
|
|
237
|
+
accepted_prediction_tokens: 0
|
|
238
|
+
audio_tokens: 0
|
|
239
|
+
reasoning_tokens: 0
|
|
240
|
+
rejected_prediction_tokens: 0
|
|
241
|
+
prompt_tokens: 133
|
|
242
|
+
prompt_tokens_details:
|
|
243
|
+
audio_tokens: 0
|
|
244
|
+
cached_tokens: 0
|
|
245
|
+
total_tokens: 152
|
|
246
|
+
status:
|
|
247
|
+
code: 200
|
|
248
|
+
message: OK
|
|
249
|
+
version: 1
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
interactions:
|
|
2
|
+
- request:
|
|
3
|
+
headers:
|
|
4
|
+
accept:
|
|
5
|
+
- application/json
|
|
6
|
+
accept-encoding:
|
|
7
|
+
- gzip, deflate
|
|
8
|
+
connection:
|
|
9
|
+
- keep-alive
|
|
10
|
+
content-length:
|
|
11
|
+
- '144'
|
|
12
|
+
content-type:
|
|
13
|
+
- application/json
|
|
14
|
+
host:
|
|
15
|
+
- api.openai.com
|
|
16
|
+
method: POST
|
|
17
|
+
parsed_body:
|
|
18
|
+
messages:
|
|
19
|
+
- content: What is the capital of Mexico?
|
|
20
|
+
role: user
|
|
21
|
+
model: gpt-4o
|
|
22
|
+
stream: true
|
|
23
|
+
stream_options:
|
|
24
|
+
include_usage: true
|
|
25
|
+
uri: https://api.openai.com/v1/chat/completions
|
|
26
|
+
response:
|
|
27
|
+
body:
|
|
28
|
+
string: |+
|
|
29
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KhEoTT6u7JgGis"}
|
|
30
|
+
|
|
31
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"68kWLPsNVG6FC"}
|
|
32
|
+
|
|
33
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" capital"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6d1qUFRY"}
|
|
34
|
+
|
|
35
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Q7kmEmvYuS4Nk"}
|
|
36
|
+
|
|
37
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" Mexico"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KrDQdBujM"}
|
|
38
|
+
|
|
39
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qCG5yEQHHMYd2"}
|
|
40
|
+
|
|
41
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" Mexico"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uFnoTvoy9"}
|
|
42
|
+
|
|
43
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":" City"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bdnHY6qXdKt"}
|
|
44
|
+
|
|
45
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2WeZHWZ8r9jetpK"}
|
|
46
|
+
|
|
47
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"7LC080uo8W"}
|
|
48
|
+
|
|
49
|
+
data: {"id":"chatcmpl-C2P1wP1damHwC6sXvGAIh5PMvH6wM","object":"chat.completion.chunk","created":1754688908,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_ff25b2783a","choices":[],"usage":{"prompt_tokens":14,"completion_tokens":8,"total_tokens":22,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":""}
|
|
50
|
+
|
|
51
|
+
data: [DONE]
|
|
52
|
+
|
|
53
|
+
headers:
|
|
54
|
+
access-control-expose-headers:
|
|
55
|
+
- X-Request-ID
|
|
56
|
+
alt-svc:
|
|
57
|
+
- h3=":443"; ma=86400
|
|
58
|
+
connection:
|
|
59
|
+
- keep-alive
|
|
60
|
+
content-type:
|
|
61
|
+
- text/event-stream; charset=utf-8
|
|
62
|
+
openai-organization:
|
|
63
|
+
- pydantic-28gund
|
|
64
|
+
openai-processing-ms:
|
|
65
|
+
- '259'
|
|
66
|
+
openai-project:
|
|
67
|
+
- proj_dKobscVY9YJxeEaDJen54e3d
|
|
68
|
+
openai-version:
|
|
69
|
+
- '2020-10-01'
|
|
70
|
+
strict-transport-security:
|
|
71
|
+
- max-age=31536000; includeSubDomains; preload
|
|
72
|
+
transfer-encoding:
|
|
73
|
+
- chunked
|
|
74
|
+
status:
|
|
75
|
+
code: 200
|
|
76
|
+
message: OK
|
|
77
|
+
version: 1
|
|
78
|
+
...
|