Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions overmind/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ class ProxyRunResponse(ReadableBaseModel):
output_layer_results: Dict[str, Any]
processed_output: Any
processed_input: Any
span_context: Dict[str, Any]

def summary(self) -> None:
summarize_proxy_run(self)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "overmind"
version = "0.1.12"
version = "0.1.13"
description = "Python client for Overmind API"
authors = ["Overmind Ltd"]
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def test_end_to_end_workflow(self, mock_request):
"output_layer_results": {},
"processed_input": "test input",
"processed_output": "test output",
"span_context": {},
},
content=b'{"llm_client_response": {"choices": [{"message": {"content": "Hello"}}]}}',
),
Expand Down
3 changes: 3 additions & 0 deletions tests/test_client_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def test_provider_invocation(self, mock_request):
"output_layer_results": {},
"processed_input": "test input",
"processed_output": "test output",
"span_context": {},
}
mock_response.content = (
b'{"llm_client_response": {"choices": [{"message": {"content": "Hello"}}]}}'
Expand Down Expand Up @@ -133,6 +134,7 @@ def test_invoke_method(self, mock_request):
"output_layer_results": {},
"processed_input": "test input",
"processed_output": "test output",
"span_context": {},
}
mock_response.content = (
b'{"llm_client_response": {"choices": [{"message": {"content": "Hello"}}]}}'
Expand Down Expand Up @@ -162,6 +164,7 @@ def test_invoke_method_with_custom_init_params(self, mock_request):
"output_layer_results": {},
"processed_input": "test input",
"processed_output": "test output",
"span_context": {},
}
mock_response.content = (
b'{"llm_client_response": {"choices": [{"message": {"content": "Hello"}}]}}'
Expand Down