Class RssFeedToolOptions
Configuration options for RSS feed tools.
public sealed class RssFeedToolOptions
- Inheritance
-
RssFeedToolOptions
- Inherited Members
Examples
Capping RSS payload size and per-feed entry count:
using LMKit.Agents.Tools.BuiltIn.Net;
var options = new RssFeedToolOptions
{
MaxEntries = 10,
TimeoutSeconds = 10
};
Properties
- MaxEntries
Gets or sets the maximum number of feed entries to return. Default is 20. Set to 0 for unlimited.
- TimeoutSeconds
Gets or sets the HTTP request timeout in seconds. Default is 30.
- UserAgent
Gets or sets the User-Agent header for HTTP requests.