Remove Perigon News integration and related SDK components

The Perigon News integration, SDK, and associated tools were removed from the repository. This includes the agent script, API SDK, and OpenAPI definitions for managing news-related operations. The changes simplify the codebase, eliminating unused or outdated dependencies.
This commit is contained in:
geoffsee
2025-05-27 13:11:52 -04:00
parent 8f4777a006
commit 2c46e7b2fc
11 changed files with 9 additions and 1812 deletions

View File

@@ -38,7 +38,7 @@
<script>
async function sendRequest() {
const input = document.getElementById('userInput').value;
const response = await fetch(`/api/webhooks?resource=web-search&input=${encodeURIComponent(input)}`);
const response = await fetch(`/api/agents?resource=web-search&input=${encodeURIComponent(input)}`);
const reader = response.body.getReader();
const decoder = new TextDecoder('utf-8');
let result = '';