From d96cd760c162ee52ec7d3d89fef9ba815ee7181a Mon Sep 17 00:00:00 2001 From: celiaelazamey-arch Date: Tue, 19 May 2026 21:19:41 +0300 Subject: [PATCH] Update tsconfig.json with model configurations Added configuration for Groq Llama and Gemini models with API keys. --- tsconfig.json | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0967ef424bc..b5fc7ad0f63 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1 +1,24 @@ -{} +{{ + "models": [ + { + "title": "Groq Llama 3.3", + "provider": "openai", + "model": "llama-3.3-70b-versatile", + "apiKey": "ضع_مفتاح_groq_الخاص_بك_هنا", + "apiBase": "https://api.groq.com/openai/v1" + }, + { + "title": "Gemini 1.5 Pro", + "provider": "gemini", + "model": "gemini-1.5-pro", + "apiKey": "ضع_مفتاح_جوجل_الخاص_بك_هنا" + } + ], + "tabAutocompleteModel": { + "title": "Groq Autocomplete", + "provider": "openai", + "model": "llama-3.3-70b-versatile", + "apiKey": "ضع_مفتاح_groq_الخاص_بك_هنا", + "apiBase": "https://api.groq.com/openai/v1" + } +}}