Build AI Agents that connect with anything and everything
Bring Your Own LLM API Key - 100+ Providers Supported !
Build custom integrations with your own APIs.
Agents can authenticate into services via custom headers.
Bring Your Own LLM API Key - 100+ Providers Supported !
Build custom integrations with your own APIs.
Agents can authenticate into services via custom headers.
import requests
url ="https://api.kramen.tech/run/identify-endpoints"headers ={"accept":"application/json","api-key":"<Your API Key Here>","Content-Type":"application/json"}data ={"api_base":"<Your API Base Here>","integration_id":"<Your Integration ID Here>","query":"<Your Query Here>","rephrasal_instructions":"<Rephrasal Instructions Here>","rephraser":"<Enable or Disable Query Rephraser>","llm_config":{"llm":"<Your LLM ID Here>","llm_api_key":"<Your LLM API Key Here>"}}response = requests.post(url, headers=headers, json=data)print(response.json())