Skip to content

Commit f902520

Browse files
committed
to pass lint
1 parent 0b20ff3 commit f902520

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

src/tool/mcp_servers/audio_mcp_server_os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,4 @@ async def audio_transcription(audio_path_or_url: str) -> str:
210210

211211

212212
if __name__ == "__main__":
213-
mcp.run(transport="stdio")
213+
mcp.run(transport="stdio")

src/tool/mcp_servers/reasoning_mcp_server_os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ async def reasoning(question: str) -> str:
100100

101101

102102
if __name__ == "__main__":
103-
mcp.run(transport="stdio")
103+
mcp.run(transport="stdio")

src/tool/mcp_servers/vision_mcp_server_os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ async def visual_question_answering(image_path_or_url: str, question: str) -> st
109109

110110

111111
if __name__ == "__main__":
112-
mcp.run(transport="stdio")
112+
mcp.run(transport="stdio")

src/utils/summary_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ async def extract_hints(
100100
async def get_gaia_answer_type(
101101
task_description: str, api_key: str, base_url: str = "https://api.openai.com/v1"
102102
) -> str:
103-
104103
client = AsyncOpenAI(api_key=api_key, timeout=600, base_url=base_url)
105104

106105
instruction = f"""Input:

0 commit comments

Comments
 (0)