Skip to content

Commit 75e8bcb

Browse files
author
ks6088ts
committed
make fix
1 parent 815bcf2 commit 75e8bcb

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

apps/11_promptflow/eval-chat-math/aggregate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
@tool
55
def accuracy_aggregate(processed_results: list[int]):
6-
76
num_exception = 0
87
num_correct = 0
98

apps/12_langgraph_agent/advanced_rag_flows/graph/chains/answer_grader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88

99
class GradeAnswer(BaseModel):
10-
1110
binary_score: bool = Field(description="Answer addresses the question, 'yes' or 'no'")
1211

1312

apps/13_langchain_toolkits/playwright_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def get_yahoo_realtime_trends(
8282
page.goto(url="https://search.yahoo.co.jp/realtime")
8383
trends = []
8484
for i in range(20):
85-
keyword = page.get_by_role("link", name=f"{i+1}", exact=True).text_content()
85+
keyword = page.get_by_role("link", name=f"{i + 1}", exact=True).text_content()
8686
trends.append(
8787
{
8888
"rank": i + 1,

0 commit comments

Comments
 (0)