Enchant your AI to 
  • get the weather
  • search Wikipedia
  • read webpages
  • see stock prices

Focus on your AI, not its functions.

As the AI landscape evolves with GPT and LLM breakthroughs, streamline your efforts. Enhance your AI capabilities effortlessly with our function marketplace.

import os
import openai
openai.api_key = os.getenv("OPENAI_API_KEY")

import arcane_ai
arcane_ai.api_key = os.getenv("ARCANEAI_API_KEY")

completion = openai.ChatCompletion.create(
  model="gpt-3.5-turbo",
  messages=[
    ...
  ],
  functions=arcane_ai.spellbook,
)

print(completion.choices[0].message)