Skip to content

Commit c30637c

Browse files
chore: update package versions in requirements and package-lock files
1 parent ce8ae22 commit c30637c

File tree

4 files changed

+37
-82
lines changed

4 files changed

+37
-82
lines changed
Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
azure-storage-file-datalake==12.20.0
2-
# langchain
3-
openai==1.84.0
4-
azure-ai-projects==1.0.0b5
1+
azure-storage-file-datalake==12.23.0
2+
openai==2.14.0
3+
azure-ai-projects==1.0.0
54
azure-ai-inference==1.0.0b9
6-
pypdf==5.6.0
7-
# pyodbc
8-
tiktoken==0.9.0
9-
azure-identity==1.23.0
5+
pypdf==6.5.0
6+
tiktoken==0.12.0
7+
azure-identity==1.25.1
108
azure-ai-textanalytics==5.3.0
11-
azure-search-documents==11.5.2
12-
azure-keyvault-secrets==4.9.0
13-
pandas==2.3.0
14-
pyodbc==5.2.0
15-
# graphrag==0.3.6
9+
azure-search-documents==11.6.0
10+
pandas==2.3.3
11+
pyodbc==5.3.0

src/App/package-lock.json

Lines changed: 10 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App/src/reportWebVitals.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import { ReportHandler } from 'web-vitals';
1+
import { Metric } from 'web-vitals';
22

3-
const reportWebVitals = (onPerfEntry?: ReportHandler) => {
3+
const reportWebVitals = (onPerfEntry?: (metric: Metric) => void) => {
44
if (onPerfEntry && onPerfEntry instanceof Function) {
5-
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
6-
getCLS(onPerfEntry);
7-
getFID(onPerfEntry);
8-
getFCP(onPerfEntry);
9-
getLCP(onPerfEntry);
10-
getTTFB(onPerfEntry);
5+
import('web-vitals').then(({ onCLS, onINP, onFCP, onLCP, onTTFB }) => {
6+
onCLS(onPerfEntry);
7+
onINP(onPerfEntry);
8+
onFCP(onPerfEntry);
9+
onLCP(onPerfEntry);
10+
onTTFB(onPerfEntry);
1111
});
1212
}
1313
};

0 commit comments

Comments
 (0)