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())
With Kramen, LLMs have access to data coming from your API.
With Kramen, you can build integrations for everything. From pre-built templates to your own custom integrations, all work under the same framework.