We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
list
1 parent 374f1e4 commit 83e50f3Copy full SHA for 83e50f3
1 file changed
README.md
@@ -31,8 +31,8 @@ client = Oxp(
31
bearer_token=os.environ.get("OXP_API_KEY"), # This is the default and can be omitted
32
)
33
34
-tool = client.tools.list()
35
-print(tool.items)
+tools = client.tools.list()
+print(tools.items)
36
```
37
38
While you can provide a `bearer_token` keyword argument,
@@ -55,8 +55,8 @@ client = AsyncOxp(
55
56
57
async def main() -> None:
58
- tool = await client.tools.list()
59
- print(tool.items)
+ tools = await client.tools.list()
+ print(tools.items)
60
61
62
asyncio.run(main())
0 commit comments