Client Libraries

To make integration easier we provide API client libraries in Python, JavaScript and Swift.

Python

Available on GitHub at https://github.com/BiteAI/biteai-python

pip install biteai

JavaScript

Available on GitHub at https://github.com/BiteAI/biteai-js

npm install biteai

Swift

The Swift client is available at https://github.com/BiteAI/biteai-swift

Add the dependencies to your project

pod "Apollo", "=0.8.0"
pod "Alamofire", "~>4.5"

Add BiteAIClient pod to your project

pod "BiteAIClient", :git => 'git@github.com:BiteAI/biteai-swift.git', :tag => 'v0.0.4'

Add BiteAI configuration to Plist

<key>BiteAI</key>
<dict>
<key>AppKey</key>
<string>[INSERT KEY]</string>
<key>BaseURL</key>
<string>https://api-beta.bite.ai/</string>
</dict>