Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/app/service/test_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"chains": [
{
"name": "RetrievalQA",
"model": {"vendor": "openai", "name": "text-davinci-003"},
"model": {"vendor": "openai", "name": "gpt-3.5-turbo-instruct"},
"vector_dbs": [
{
"name": "Chroma",
Expand Down Expand Up @@ -125,7 +125,7 @@ def test_fetch_chain_details(discovery):
},
}
],
"model": {"name": "text-davinci-003", "vendor": "openai"},
"model": {"name": "gpt-3.5-turbo-instruct", "vendor": "openai"},
}
]
output = discovery._fetch_chain_details(app_metadata=None)
Expand Down Expand Up @@ -173,7 +173,7 @@ def test_create_ai_apps_model(discovery, mock_pebblo_server_version):
},
}
],
"model": {"name": "text-davinci-003", "vendor": "openai"},
"model": {"name": "gpt-3.5-turbo-instruct", "vendor": "openai"},
}
]
expected_output = {
Expand Down Expand Up @@ -222,7 +222,7 @@ def test_create_ai_apps_model(discovery, mock_pebblo_server_version):
},
}
],
"model": {"name": "text-davinci-003", "vendor": "openai"},
"model": {"name": "gpt-3.5-turbo-instruct", "vendor": "openai"},
}
],
"retrievals": [],
Expand Down