diff --git a/.github/workflows/check-pr-title.yml b/.github/workflows/check-pr-title.yml index 516e4b2275d0d..c857fcfdc1089 100644 --- a/.github/workflows/check-pr-title.yml +++ b/.github/workflows/check-pr-title.yml @@ -30,6 +30,6 @@ jobs: - name: Validate PR title id: validate_pr_title - uses: n8n-io/validate-n8n-pull-request-title@v1.1 + uses: n8n-io/validate-n8n-pull-request-title@v1.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/packages/@n8n/nodes-langchain/credentials/OllamaApi.credentials.ts b/packages/@n8n/nodes-langchain/credentials/OllamaApi.credentials.ts index 4b689f3d034b5..acfbbcd3f92a0 100644 --- a/packages/@n8n/nodes-langchain/credentials/OllamaApi.credentials.ts +++ b/packages/@n8n/nodes-langchain/credentials/OllamaApi.credentials.ts @@ -20,15 +20,8 @@ export class OllamaApi implements ICredentialType { test: ICredentialTestRequest = { request: { baseURL: '={{ $credentials.baseUrl }}', - url: '/api/generate', - method: 'POST', - headers: { - 'anthropic-version': '2023-06-01', - }, - body: { - model: 'llama2', - prompt: 'Hello', - }, + url: '/', + method: 'GET', }, }; }