Skip to content

Commit a08eaaf

Browse files
update grafi version (#10)
1 parent 1d34f92 commit a08eaaf

3 files changed

Lines changed: 406 additions & 406 deletions

File tree

grafi_dev/frontend/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@
582582
if (reqSelect.value !== "All") {
583583
evs = evs.filter(
584584
(e) =>
585-
e.execution_context.assistant_request_id === reqSelect.value
585+
e.invoke_context.assistant_request_id === reqSelect.value
586586
);
587587
}
588588
switch (eventView.value) {
@@ -827,7 +827,7 @@
827827
}
828828
if (reqSelect.value !== "All") {
829829
evs = evs.filter(
830-
(e) => e.execution_context.assistant_request_id === reqSelect.value
830+
(e) => e.invoke_context.assistant_request_id === reqSelect.value
831831
);
832832
}
833833

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "grafi-dev"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
description = "Run a grafi Assistant locally with a live workflow graph & trace viewer"
99
authors = [{ name = "Craig Li", email = "craig@binome.dev" }]
1010
readme = "README.md"
1111
requires-python = ">=3.10,<3.13"
1212
dependencies = [
1313
"fastapi>=0.115.12",
14-
"grafi>=0.0.19",
14+
"grafi>=0.0.21",
1515
"typer>=0.15.3",
1616
"uvicorn>=0.34.2",
1717
]

0 commit comments

Comments
 (0)