galileo-core 3.81.0__py3-none-any.whl → 3.82.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
galileo_core/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "3.81.0"
1
+ __version__ = "3.82.0"
@@ -65,6 +65,7 @@ class EventType(str, Enum):
65
65
  mcp_call = "mcp_call"
66
66
  mcp_list_tools = "mcp_list_tools"
67
67
  mcp_approval_request = "mcp_approval_request"
68
+ web_search_call = "web_search_call"
68
69
 
69
70
 
70
71
  class EventStatus(str, Enum):
@@ -105,7 +106,7 @@ class ReasoningEvent(BaseEvent):
105
106
 
106
107
  type: Literal[EventType.reasoning] = EventType.reasoning
107
108
  content: Optional[str] = Field(default=None, description="The reasoning/thinking content")
108
- summary: Optional[str] = Field(default=None, description="Summary of the reasoning")
109
+ summary: Optional[Union[str, List[Dict[str, Any]]]] = Field(default=None, description="Summary of the reasoning")
109
110
 
110
111
 
111
112
  class InternalToolCall(BaseEvent):
@@ -121,6 +122,21 @@ class InternalToolCall(BaseEvent):
121
122
  output: Optional[Dict[str, Any]] = Field(default=None, description="Output/results from the tool call")
122
123
 
123
124
 
125
+ class WebSearchAction(BaseModel):
126
+ """Action payload for a web search call event."""
127
+
128
+ type: Literal["search"] = Field(description="Type of web search action")
129
+ query: Optional[str] = Field(default=None, description="Search query string")
130
+ sources: Optional[Any] = Field(default=None, description="Optional provider-specific sources")
131
+
132
+
133
+ class WebSearchCallEvent(BaseEvent):
134
+ """An OpenAI-style web search call event."""
135
+
136
+ type: Literal[EventType.web_search_call] = EventType.web_search_call
137
+ action: WebSearchAction = Field(description="Web search action payload")
138
+
139
+
124
140
  class ImageGenerationEvent(BaseEvent):
125
141
  """An image generation event from the model."""
126
142
 
@@ -171,6 +187,7 @@ Event = Annotated[
171
187
  MessageEvent,
172
188
  ReasoningEvent,
173
189
  InternalToolCall,
190
+ WebSearchCallEvent,
174
191
  ImageGenerationEvent,
175
192
  MCPCallEvent,
176
193
  MCPListToolsEvent,
@@ -86,6 +86,8 @@ class ScorerName(str, Enum):
86
86
 
87
87
  rouge = "rouge"
88
88
 
89
+ reasoning_coherence = "reasoning_coherence"
90
+
89
91
  sql_efficiency = "sql_efficiency"
90
92
 
91
93
  sql_adherence = "sql_adherence"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: galileo-core
3
- Version: 3.81.0
3
+ Version: 3.82.0
4
4
  Summary: Shared schemas and configuration for Galileo's Python packages.
5
5
  License: Apache-2.0
6
6
  Keywords: llm,quality,language_models,galileo
@@ -1,4 +1,4 @@
1
- galileo_core/__init__.py,sha256=HNRblLuZoS2yJW9FwHR4inHitiqokCTC0JFja9KuSNo,23
1
+ galileo_core/__init__.py,sha256=Za0uTMfFaftHcrL2K7d8-r1a_Sek_wUhBGK_J52fbow,23
2
2
  galileo_core/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  galileo_core/constants/config.py,sha256=MYvixj3X3CoiC38QVMdidApURKFOAaPaYoHhFESOJlU,329
4
4
  galileo_core/constants/dataset_format.py,sha256=H6ZigDd2QMpRcRhLC38e0hRoMh0kKbvdhbmS5yK1gZU,116
@@ -71,7 +71,7 @@ galileo_core/schemas/core/user_project.py,sha256=A9pxfmL8AFbwIhLHgBf22zadmEzHAOV
71
71
  galileo_core/schemas/core/user_role.py,sha256=HsQ-5fgGt4bWwIbhAE4PqzJWhHvINAZW2-WD5YTivng,329
72
72
  galileo_core/schemas/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  galileo_core/schemas/logging/agent.py,sha256=zexqP7o_wjicj4H1ZhrF9wkaYBxcj-skLv_LXj8H7gU,252
74
- galileo_core/schemas/logging/llm.py,sha256=CqTGbq9Q26w8A0Wgk0PpioYV_cx270K3JIUMPXbM334,6836
74
+ galileo_core/schemas/logging/llm.py,sha256=BN2oya2sqAWdOxthN2bCWCfDXEsjKBTCXjBYWh4Q758,7521
75
75
  galileo_core/schemas/logging/session.py,sha256=R7J5B33ffdQrNpzj7HEBLjQ3rKqNRuHOYttO_-PK378,751
76
76
  galileo_core/schemas/logging/span.py,sha256=k4UdVNV4fbUaCQ4ZsKir125jbAnN3ZD1vDNFA7fVB1I,12480
77
77
  galileo_core/schemas/logging/step.py,sha256=rRwRSeFbUFbnWg6mOfclo3s6VTtPayLE2-7qBMwqKFQ,8702
@@ -106,7 +106,7 @@ galileo_core/schemas/shared/scorers/chain_aggregation.py,sha256=OpuCmR6wJ8GGFJEy
106
106
  galileo_core/schemas/shared/scorers/filters.py,sha256=CEiHddUQzwFq0m_2pnEMsIc5hZvO7m-ErE73BnJCPyc,782
107
107
  galileo_core/schemas/shared/scorers/mixins.py,sha256=PvyTqTJtrey5Buo6lJiDngMcUJxCKxcymK3OzXQJJC8,906
108
108
  galileo_core/schemas/shared/scorers/scorer_configuration.py,sha256=hSJ-rObA_Wqff__74wA1srmKKZplCBqSRmPuHB6EJhA,1120
109
- galileo_core/schemas/shared/scorers/scorer_name.py,sha256=7u2bwOIO1MUTf6DbhEy-NNCZZJPtPC7fUIPOy1YqUk0,3537
109
+ galileo_core/schemas/shared/scorers/scorer_name.py,sha256=9MbDQzObVcmJl53AmmD-xrBM7Qxmm2YhNBr4RNhn2YE,3586
110
110
  galileo_core/schemas/shared/scorers/scorer_type.py,sha256=04ZPqHkvRR6b9ARitQJhGfn-9nKP4fNH_n1noeEt08c,1401
111
111
  galileo_core/schemas/shared/scorers/scorers.py,sha256=3OA8-QYkCslo7IOHrHQ5kVKRfBbaFvt5gG7WVTzi9pc,4962
112
112
  galileo_core/schemas/shared/traces_logger.py,sha256=HXydSyfHmizxcqYFzwAKYdamH1lfgRrxXThh1yirjYU,23498
@@ -122,8 +122,8 @@ galileo_core/utils/dataset.py,sha256=wjm3NdNRuxj5mK7GqQUdA-Map_EB0SpFfM1QKapd6-A
122
122
  galileo_core/utils/json.py,sha256=ug5P-iozgmqXRhLZS3Dm_JPViTICboKukg1mqqBq2i4,327
123
123
  galileo_core/utils/name.py,sha256=kaDeZJ1K3-SSazYrUeSbUsQrnZlnOBYU42t-QvX-coE,204
124
124
  galileo_core/utils/scorer_validation.py,sha256=bjNmDZhNsmmb8qHBfndXVAL60W5nCvoDdKrAoAegxJg,11259
125
- galileo_core-3.81.0.dist-info/LICENSE,sha256=4D_6tarPnIYkAqF-0LzrodE9wFtSulO3V4RZf__MriE,10946
126
- galileo_core-3.81.0.dist-info/METADATA,sha256=a01eAPr43IVC3tTjoEPrLk-kzAVkzHd_VQGQZYFm_2w,2731
127
- galileo_core-3.81.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
128
- galileo_core-3.81.0.dist-info/entry_points.txt,sha256=epOvdlN6_7ua8stNHURhJhXDIIrheccwYv0Z-QFmHJU,61
129
- galileo_core-3.81.0.dist-info/RECORD,,
125
+ galileo_core-3.82.0.dist-info/LICENSE,sha256=4D_6tarPnIYkAqF-0LzrodE9wFtSulO3V4RZf__MriE,10946
126
+ galileo_core-3.82.0.dist-info/METADATA,sha256=wBo3uAicViV37ZZy7RtvYX4rpgie7DQJVlevlvsKICY,2731
127
+ galileo_core-3.82.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
128
+ galileo_core-3.82.0.dist-info/entry_points.txt,sha256=epOvdlN6_7ua8stNHURhJhXDIIrheccwYv0Z-QFmHJU,61
129
+ galileo_core-3.82.0.dist-info/RECORD,,