Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
math_tutor_dev
public_math_tutor
Commits
b3cd9984
Commit
b3cd9984
authored
Jan 29, 2026
by
Kantz
Browse files
tool output aus Contexsheet entfernt
parent
4406f4f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
math-tutor/backend/app/deterministic_services/context_store.py
View file @
b3cd9984
...
@@ -46,7 +46,6 @@ def init_sheet(chat_id: str, messages: list[dict]) -> dict[str, Any]:
...
@@ -46,7 +46,6 @@ def init_sheet(chat_id: str, messages: list[dict]) -> dict[str, Any]:
"retrieval_contexts"
:
[],
"retrieval_contexts"
:
[],
"math_solutions"
:
[],
"math_solutions"
:
[],
"LLM_solutions"
:[],
"LLM_solutions"
:[],
"tool_outputs"
:
[],
"decisions"
:
[],
"decisions"
:
[],
"initialized"
:
False
,
"initialized"
:
False
,
}
}
...
@@ -186,10 +185,6 @@ def format_sheet(sheet: dict[str, Any]) -> str:
...
@@ -186,10 +185,6 @@ def format_sheet(sheet: dict[str, Any]) -> str:
else
:
else
:
parts
.
append
(
"MATH_SOLUTIONS:
\n
(leer)"
)
parts
.
append
(
"MATH_SOLUTIONS:
\n
(leer)"
)
if
sheet
.
get
(
"tool_outputs"
):
parts
.
append
(
"TOOL_OUTPUTS:
\n
"
+
json
.
dumps
(
sheet
[
"tool_outputs"
],
ensure_ascii
=
True
))
else
:
parts
.
append
(
"TOOL_OUTPUTS:
\n
(leer)"
)
return
"
\n\n
"
.
join
(
parts
)
return
"
\n\n
"
.
join
(
parts
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment