Skip to content

Commit 71c9619

Browse files
authored
Merge pull request #722 from openmeterio/fix/python-client-query-serialization
fix(api): python client dict query serialization (filterGroupBy)
2 parents edae910 + 623ad89 commit 71c9619

File tree

5 files changed

+653
-410
lines changed

5 files changed

+653
-410
lines changed

api/client/python/examples/async/ingest.py

+17-14
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,27 @@
1818
headers=headers,
1919
)
2020

21-
event = CloudEvent(
22-
attributes={
23-
"type": "tokens",
24-
"source": "openmeter-python",
25-
"subject": "user-id",
26-
},
27-
data={
28-
"prompt_tokens": 5,
29-
"completion_tokens": 10,
30-
"total_tokens": 15,
31-
"model": "gpt-3.5-turbo",
32-
},
33-
)
34-
3521

3622
async def main():
3723
async with client as c:
3824
try:
25+
event = CloudEvent(
26+
attributes={
27+
"type": "request",
28+
"source": "openmeter-python",
29+
"subject": "user-id",
30+
},
31+
data={"method": "GET", "route": "/hello"},
32+
)
33+
await c.ingest_events(to_dict(event))
34+
event = CloudEvent(
35+
attributes={
36+
"type": "request",
37+
"source": "openmeter-python",
38+
"subject": "user-id",
39+
},
40+
data={"method": "POST", "route": "/hello"},
41+
)
3942
await c.ingest_events(to_dict(event))
4043
except HttpResponseError as e:
4144
print(e)

0 commit comments

Comments
 (0)