mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-11 13:04:17 +00:00
cbb72045a3
* Add end to end integration tests for batches * Add end to end integration tests for batches * Add end to end integration tests for batches * Fix linter errors: remove unused imports and variables * Add end to end integration tests for batches * Add end to end integration tests for batches * Add end to end integration tests for batches * Add end to end integration tests for batches * chore: document temporary grype ignore for CVE-2019-1010022 * chore: add config option * chore: add ALLOWED_CVES * refetch after key create * test: remove flaky azure oidc embedding test * fixing build * bump: version 1.80.15 → 1.80.16 * [Fix] MSFT SSO - allow setting custom MSFT Base URLs (#18977) * fix TestCustomMicrosoftSSO * init CustomMicrosoftSSO * use CustomMicrosoftSSO * docs fix * docs fix * [Feat] UI Feedback Form - why LiteLLM (#18999) * init survey prompt * init survey modal * init Survey Modal * POST feedback hook * survey Modal * add other * in product survey fixes * fix survey prompt * fix survey * fix build * ui new build * [Feat] MSFT SSO - allow overriding env var attribute names (#18998) * add MSFT SSO constants * fix MSFT SSO env vars * test_microsoft_sso_handler_openid_from_response_with_custom_attributes * Add pricing of azure_ai/claude-opus-4-5 * test: temporarily disable flaky responses_id_security tests * fix(ui): use non-streaming method for endpoint v1/a2a/message/send in A2A playground ' --------- Co-authored-by: Ephrim Stanley <ephrim.stanley@point72.com> Co-authored-by: Yuta Saito <uc4w6c@bma.biglobe.ne.jp> Co-authored-by: yuneng-jiang <yuneng.jiang@gmail.com> Co-authored-by: YutaSaito <36355491+uc4w6c@users.noreply.github.com> Co-authored-by: Ishaan Jaff <ishaanjaffer0324@gmail.com> Co-authored-by: Sameer Kankute <sameer@berri.ai>
27 lines
602 B
JSON
27 lines
602 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", "e2e_tests", "scripts"]
|
|
}
|