We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d02d6e commit 7d12c5eCopy full SHA for 7d12c5e
core/platform.go
@@ -1,11 +1,16 @@
1
package core
2
3
+// Platform represents a type for different AI platforms.
4
type Platform string
5
6
const (
- OpenAI Platform = "openai"
7
- Azure Platform = "azure"
8
- Gemini Platform = "gemini"
+ // OpenAI represents the OpenAI platform.
+ OpenAI Platform = "openai"
9
+ // Azure represents the Azure platform.
10
+ Azure Platform = "azure"
11
+ // Gemini represents the Gemini platform.
12
+ Gemini Platform = "gemini"
13
+ // Anthropic represents the Anthropic platform.
14
Anthropic Platform = "anthropic"
15
)
16
0 commit comments