-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/aixplain/aiXplainKit
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# aiXplainKit | ||
|
||
aiXplainKit enables Swift programmers to add AI functions to their software with ease. | ||
|
||
## Overview | ||
|
||
aiXplainKit is a software development kit (SDK) for the [aiXplain](https://aixplain.com/) platform. With aiXplainKit, developers can quickly and easily: | ||
|
||
- [Discover](https://aixplain.com/platform/discovery/) aiXplain’s ever-expanding catalog of 35,000+ ready-to-use AI models and utilize them. | ||
- [Design](https://aixplain.com/platform/studio/) their own custom pipelines and run them. | ||
|
||
|
||
## API Key Setup | ||
Before you can use the aixplain SDK, you'll need to obtain an API key from our platform. For details refer this [Team API Key Guide<MISSING>](<doc:TeamAPIKeyGuide>). | ||
|
||
Once you get the API key, you'll need to add this API key as an environment variable on your system. | ||
|
||
```swift | ||
AiXplainKit.shared.keyManager.TEAM_API_KEY = "<Your Key>" | ||
``` | ||
|
||
Alternatively, you can set the API key as an environment variable in Xcode. This approach keeps your API key separate from your code, which can be beneficial for security and portability. Check on how to do this on the ``APIKeyManager`` | ||
|
||
## Topics | ||
|
||
### Essential | ||
|
||
- [TeamAPIKeyGuide]() | ||
- [Pipeline]() | ||
|
||
|