-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Update tsconfig.json with model configurations #12441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,24 @@ | ||
| {} | ||
| {{ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: Non-tsconfig application model configuration was added to Prompt for AI agents |
||
| "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" | ||
| } | ||
| }} | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P0: Invalid JSON syntax in tsconfig.json (
{{ ... }}) will cause parse failures in TypeScript compiler, editors, and build tooling.Prompt for AI agents