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 1fa9a31 commit ce8da5eCopy full SHA for ce8da5e
src/LLM-API/LLMAPIChat.class.st
@@ -67,6 +67,7 @@ LLMAPIChat >> initialize [
67
68
{ #category : 'accessing' }
69
LLMAPIChat >> path [
70
+
71
^ 'v1/chat/completions'
72
]
73
src/LLM-API/LLMAPIChatGemini.class.st
@@ -0,0 +1,15 @@
1
+"
2
+Adapting the API for gemini AI
3
4
+Class {
5
+ #name : 'LLMAPIChatGemini',
6
+ #superclass : 'LLMAPIChat',
7
+ #category : 'LLM-API',
8
+ #package : 'LLM-API'
9
+}
10
11
+{ #category : 'accessing' }
12
+LLMAPIChatGemini >> path [
13
14
+ ^ 'v1beta/openai/chat/completions'
15
+]
0 commit comments