action core_similar_articles { label: "Get articles by similarity to a text" description: "Method accepts a text and retrieves a JSON array of articles which are similar to the given text. The response array is ordered based on similarity score, starting from the most similar." provider: core method: POST path: "/articles/similar" encoding: json input: { type: "object" properties: { citations: { type: "string" } duplicate: { type: "string" } faithfulMetadata: { type: "string" } fulltext: { type: "string" } limit: { type: "string" } metadata: { type: "string" } similar: { type: "string" } urls: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }