From 0691368a3fe597adb681ea526088e8ff82db96cb Mon Sep 17 00:00:00 2001 From: Philipp Temminghoff Date: Tue, 17 Dec 2024 00:59:31 +0100 Subject: [PATCH] chore: small docs update --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a8c6b54..9c13d08 100644 --- a/README.md +++ b/README.md @@ -161,8 +161,8 @@ resources: Use the agent with this configuration: ```python -from llmling.config.runtime import RuntimeConfig -from llmling_agent import LLMLingAgent +from llmling import RuntimeConfig +from llmling_agent import LLMlingAgent from pydantic import BaseModel class WebResult(BaseModel): @@ -170,7 +170,7 @@ class WebResult(BaseModel): success: bool async with RuntimeConfig.open("config.yml") as runtime: - agent = LLMLingAgent[WebResult](runtime) + agent = LLMlingAgent[WebResult](runtime) result = await agent.run( "Load the bookmarks resource and open the Python website URL" ) @@ -200,7 +200,8 @@ Add LLMLing as a context server in your `settings.json`: "args": [ "mcp-server-llmling@latest", "start", - "path/to/your/config.yml" + "path/to/your/config.yml", + "--zed-mode" ] }, "settings": {}