Skip to main content

Definition

Assembly: CloudNimble.ClaudeEssentials.dll Namespace: CloudNimble.ClaudeEssentials.Hooks.Tools.Inputs Inheritance: System.Object

Syntax

CloudNimble.ClaudeEssentials.Hooks.Tools.Inputs.WebFetchToolInput

Summary

Represents the input parameters for the WebFetch tool. The WebFetch tool fetches content from a URL and processes it using an AI model.

Remarks

Fetches URL content, converts HTML to markdown, and processes the content with a prompt using a small, fast model. Includes a self-cleaning 15-minute cache.

Constructors

.ctor

Syntax

public WebFetchToolInput()

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

Prompt

Gets or sets the prompt to run on the fetched content.

Syntax

public string Prompt { get; set; }

Property Value

Type: string

Remarks

Describes what information to extract from the page.

Url

Gets or sets the URL to fetch content from.

Syntax

public string Url { get; set; }

Property Value

Type: string

Remarks

Must be a fully-formed valid URL. HTTP URLs will be automatically upgraded to HTTPS.

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?