Wit.ai integration
Wit.ai is a natural language processing platform that enables developers to…
- Provider
- wit_ai
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 31 available
Quick start
Call Wit.ai from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Wit.ai's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"WIT_AI_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Wit.ai API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
31 actions exposed via the
Wit.ai integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
WIT_AI_ADD_ENTITY_KEYWORD -
WIT_AI_ADD_KEYWORD_SYNONYM -
WIT_AI_ADD_TRAIT_VALUE -
WIT_AI_CREATE_APP -
WIT_AI_CREATE_ENTITY -
WIT_AI_CREATE_INTENT -
WIT_AI_CREATE_TRAIT -
WIT_AI_CREATE_UTTERANCES -
WIT_AI_DELETE_APP -
WIT_AI_DELETE_ENTITY -
WIT_AI_DELETE_ENTITY_KEYWORD -
WIT_AI_DELETE_ENTITY_ROLE
Show all 31 actions
-
WIT_AI_DELETE_INTENT -
WIT_AI_DELETE_KEYWORD_SYNONYM -
WIT_AI_DELETE_UTTERANCES -
WIT_AI_DETECT_LANGUAGE -
WIT_AI_EXPORT_APP -
WIT_AI_GET_APP -
WIT_AI_GET_ENTITY -
WIT_AI_GET_INTENT -
WIT_AI_GET_INTENTS -
WIT_AI_GET_MESSAGE -
WIT_AI_GET_TRAIT -
WIT_AI_GET_TRAITS -
WIT_AI_GET_VOICE -
WIT_AI_LIST_APPS -
WIT_AI_LIST_APP_TAGS -
WIT_AI_LIST_ENTITIES -
WIT_AI_LIST_UTTERANCES -
WIT_AI_LIST_VOICES -
WIT_AI_PUT_APP
Build with Wit.ai
Open OverSkill, describe what you want to build, and reference Wit.ai in your prompt — the AI will wire up the integration automatically.