Skip to content

Commit 3eb733d

Browse files
committed
Run formatter
1 parent a57e972 commit 3eb733d

File tree

4 files changed

+191
-194
lines changed

4 files changed

+191
-194
lines changed

image_processing/src/image_processing/requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ aiohttp==3.11.11
55
aiosignal==1.3.2
66
annotated-types==0.7.0
77
anyio==4.8.0
8-
attrs==24.3.0
8+
attrs==25.1.0
99
azure-ai-documentintelligence==1.0.0
1010
azure-ai-textanalytics==5.3.0
1111
azure-ai-vision-imageanalysis==1.0.0
@@ -15,7 +15,7 @@ azure-functions==1.21.3
1515
azure-identity==1.19.0
1616
azure-search==1.0.0b2
1717
azure-search-documents==11.6.0b8
18-
azure-storage-blob==12.24.0
18+
azure-storage-blob==12.24.1
1919
beautifulsoup4==4.12.3
2020
blis==0.7.11
2121
bs4==0.0.2
@@ -38,7 +38,7 @@ fsspec==2024.12.0
3838
h11==0.14.0
3939
httpcore==1.0.7
4040
httpx==0.28.1
41-
huggingface-hub==0.27.1
41+
huggingface-hub==0.28.0
4242
idna==3.10
4343
isodate==0.7.2
4444
jinja2==3.1.5
@@ -50,15 +50,15 @@ marisa-trie==1.2.1
5050
markdown-it-py==3.0.0
5151
markupsafe==3.0.2
5252
mdurl==0.1.2
53-
model2vec==0.3.7
53+
model2vec==0.3.8
5454
msal==1.31.1
5555
msal-extensions==1.2.0
5656
msrest==0.7.1
5757
multidict==6.1.0
5858
murmurhash==1.0.12
5959
numpy==1.26.4
6060
oauthlib==3.2.2
61-
openai==1.60.0
61+
openai==1.60.2
6262
openpyxl==3.1.5
6363
packaging==24.2
6464
pandas==2.2.3
@@ -67,7 +67,7 @@ portalocker==2.10.1
6767
preshed==3.0.9
6868
propcache==0.2.1
6969
pycparser==2.22 ; platform_python_implementation != 'PyPy'
70-
pydantic==2.10.5
70+
pydantic==2.10.6
7171
pydantic-core==2.27.2
7272
pygments==2.19.1
7373
pyjwt==2.10.1

text_2_sql/autogen/src/autogen_text_2_sql/state_store.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ def save_state(self, thread_id: str, state: dict) -> None:
2626

2727
class CosmosStateStore(StateStore):
2828
def __init__(self, endpoint, database, container, credential, partition_key=None):
29-
client = CosmosClient(
30-
url=endpoint,
31-
credential=credential
32-
)
29+
client = CosmosClient(url=endpoint, credential=credential)
3330
database_client = client.get_database_client(database)
3431
self._db = database_client.get_container_client(container)
3532
self.partition_key = partition_key
@@ -57,4 +54,4 @@ def save_state(self, thread_id: str, state: dict) -> None:
5754
"id": thread_id,
5855
"state": state,
5956
}
60-
)
57+
)

text_2_sql/text_2_sql_core/src/text_2_sql_core/payloads/interaction_payloads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class PayloadBase(InteractionPayloadBase):
4848
class DismabiguationRequestsPayload(InteractionPayloadBase):
4949
class Body(InteractionPayloadBase):
5050
class DismabiguationRequest(InteractionPayloadBase):
51-
assistant_question: str | None = Field(..., alias="AssistantQuestion")
51+
assistant_question: str | None = Field(..., alias="assistantQuestion")
5252
user_choices: list[str] | None = Field(default=None, alias="userChoices")
5353

5454
disambiguation_requests: list[DismabiguationRequest] | None = Field(

0 commit comments

Comments
 (0)