@@ -203,7 +203,7 @@ function AddChatCollab({ addCollab, project_id }) {
203
203
< div >
204
204
You can{ " " }
205
205
{ redux . getProjectsStore ( ) . hasLanguageModelEnabled ( project_id ) && (
206
- < > put @chatgpt in any message to get a response from ChatGPT , </ >
206
+ < > chat with AI or notify a collaborator by typing @ , </ >
207
207
) }
208
208
< A href = "https://github.com/sagemathinc/cocalc/discussions" >
209
209
join a discussion on GitHub
@@ -218,17 +218,6 @@ function AddChatCollab({ addCollab, project_id }) {
218
218
}
219
219
220
220
function CollabList ( { project, addCollab, actions } ) {
221
- const projectsStore = redux . getProjectsStore ( ) ;
222
- const hasOpenAI = projectsStore . hasLanguageModelEnabled (
223
- project . get ( "project_id" ) ,
224
- undefined ,
225
- "openai" ,
226
- ) ;
227
- const hasGoogleLLM = projectsStore . hasLanguageModelEnabled (
228
- project . get ( "project_id" ) ,
229
- undefined ,
230
- "google" ,
231
- ) ;
232
221
return (
233
222
< div
234
223
style = {
@@ -248,11 +237,9 @@ function CollabList({ project, addCollab, actions }) {
248
237
< Icon name = { addCollab ? "caret-down" : "caret-right" } />
249
238
</ div >
250
239
< span style = { { color : COLORS . GRAY_M , fontSize : "10pt" } } >
251
- { hasOpenAI && < > @ChatGPT, </ > }
252
- { hasGoogleLLM && < > @Gemini, </ > }
253
240
< ProjectUsers
254
241
project = { project }
255
- none = { < span > { hasOpenAI ? "add" : " Add" } people to work with...</ span > }
242
+ none = { < span > Add people to work with...</ span > }
256
243
/>
257
244
</ span >
258
245
</ div >
0 commit comments