llmir 0.0.7__tar.gz → 0.0.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llmir
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Core message and tool IR for LLM pipelines
5
5
  Author: Mathis Siebert
6
6
  Requires-Python: >=3.11
@@ -39,7 +39,6 @@ class OpenAIMessage(TypedDict):
39
39
  class OpenAIMessageToolResponse(TypedDict):
40
40
  role: Literal["tool"]
41
41
  tool_call_id: str
42
- name: str
43
42
  content: str
44
43
 
45
44
 
@@ -68,7 +67,6 @@ def to_openai(messages: list[AIMessages]) -> list[OpenAIMessages]:
68
67
  OpenAIMessageToolResponse(
69
68
  role=role,
70
69
  tool_call_id=message.id,
71
- name=message.name,
72
70
  content=text,
73
71
  )
74
72
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llmir
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Core message and tool IR for LLM pipelines
5
5
  Author: Mathis Siebert
6
6
  Requires-Python: >=3.11
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llmir"
3
- version = "0.0.7"
3
+ version = "0.0.8"
4
4
  description = "Core message and tool IR for LLM pipelines"
5
5
  authors = [{ name="Mathis Siebert" }]
6
6
  requires-python = ">=3.11"
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