Skip to content

Commit

Permalink
Fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasTrg authored May 22, 2024
1 parent c56653b commit 7f93e6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agenta-backend/agenta_backend/services/llm_apps_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ async def get_parameters_from_openapi(uri: str) -> List[Dict]:
"""

schema = await _get_openai_json_from_uri(uri)
schema = await _get_openapi_json_from_uri(uri)

try:
body_schema_name = (
Expand Down Expand Up @@ -304,7 +304,7 @@ async def get_parameters_from_openapi(uri: str) -> List[Dict]:
return parameters


async def _get_openai_json_from_uri(uri):
async def _get_openapi_json_from_uri(uri):
async with aiohttp.ClientSession() as client:
resp = await client.get(uri, timeout=5)
resp_text = await resp.text()
Expand Down

0 comments on commit 7f93e6d

Please sign in to comment.