File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ This document contains critical information about working with this codebase. Fo
33
33
34
34
- For commits related to a Github issue, add
35
35
``` bash
36
- git commit --trailer " Github-Issue:<number>"
36
+ git commit --trailer " Github-Issue:# <number>"
37
37
```
38
38
- NEVER ever mention a ` co-authored-by ` or similar aspects. In particular, never
39
39
mention the tool used to create the commit message or PR.
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ async def long_task(files: list[str], ctx: Context) -> str:
218
218
for i, file in enumerate (files):
219
219
ctx.info(f " Processing { file } " )
220
220
await ctx.report_progress(i, len (files))
221
- data = await ctx.read_resource(f " file:// { file } " )
221
+ data, mime_type = await ctx.read_resource(f " file:// { file } " )
222
222
return " Processing complete"
223
223
```
224
224
@@ -436,7 +436,7 @@ async def run():
436
436
tools = await session.list_tools()
437
437
438
438
# Read a resource
439
- resource = await session.read_resource(" file://some/path" )
439
+ content, mime_type = await session.read_resource(" file://some/path" )
440
440
441
441
# Call a tool
442
442
result = await session.call_tool(" tool-name" , arguments = {" arg1" : " value" })
You can’t perform that action at this time.
0 commit comments