mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Adding parameter to compose API's model list
This commit is contained in:
parent
5522584992
commit
6e294af0a6
@ -15,7 +15,30 @@ def get_current_model_info():
|
|||||||
|
|
||||||
|
|
||||||
def list_models():
|
def list_models():
|
||||||
return {'model_names': get_available_models()[1:]}
|
mode = shared.args.model_selection_mode
|
||||||
|
|
||||||
|
result = {
|
||||||
|
"object": "list",
|
||||||
|
"data": []
|
||||||
|
}
|
||||||
|
|
||||||
|
# Inclure les dummy models si le bit 0 est activé
|
||||||
|
if mode & 1:
|
||||||
|
dummy_models = ['gpt-3.5-turbo', 'text-embedding-ada-002']
|
||||||
|
for model in dummy_models:
|
||||||
|
result["data"].append(model_info_dict(model))
|
||||||
|
|
||||||
|
# Inclure les modèles locaux si le bit 1 est activé
|
||||||
|
if mode & 2:
|
||||||
|
if mode & 4:
|
||||||
|
# Ne renvoyer que le modèle actuellement chargé
|
||||||
|
result["data"].append(model_info_dict(shared.model_name))
|
||||||
|
else:
|
||||||
|
# Renvoyer tous les modèles disponibles
|
||||||
|
for model in get_available_models():
|
||||||
|
result["data"].append(model_info_dict(model))
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
def list_dummy_models():
|
def list_dummy_models():
|
||||||
|
@ -147,7 +147,7 @@ async def handle_models(request: Request):
|
|||||||
is_list = request.url.path.split('?')[0].split('#')[0] == '/v1/models'
|
is_list = request.url.path.split('?')[0].split('#')[0] == '/v1/models'
|
||||||
|
|
||||||
if is_list:
|
if is_list:
|
||||||
response = OAImodels.list_dummy_models()
|
response = OAImodels.list_models()
|
||||||
else:
|
else:
|
||||||
model_name = path[len('/v1/models/'):]
|
model_name = path[len('/v1/models/'):]
|
||||||
response = OAImodels.model_info_dict(model_name)
|
response = OAImodels.model_info_dict(model_name)
|
||||||
|
@ -200,6 +200,7 @@ group.add_argument('--api-port', type=int, default=5000, help='The listening por
|
|||||||
group.add_argument('--api-key', type=str, default='', help='API authentication key.')
|
group.add_argument('--api-key', type=str, default='', help='API authentication key.')
|
||||||
group.add_argument('--admin-key', type=str, default='', help='API authentication key for admin tasks like loading and unloading models. If not set, will be the same as --api-key.')
|
group.add_argument('--admin-key', type=str, default='', help='API authentication key for admin tasks like loading and unloading models. If not set, will be the same as --api-key.')
|
||||||
group.add_argument('--nowebui', action='store_true', help='Do not launch the Gradio UI. Useful for launching the API in standalone mode.')
|
group.add_argument('--nowebui', action='store_true', help='Do not launch the Gradio UI. Useful for launching the API in standalone mode.')
|
||||||
|
group.add_argument('--model-selection-mode', type=int, default=0, help='Model selection mode: bitwise flag. 1=Include dummy models, 2=Include local models, 4=Return only the currently loaded model if local models are included.')
|
||||||
|
|
||||||
# Multimodal
|
# Multimodal
|
||||||
group = parser.add_argument_group('Multimodal')
|
group = parser.add_argument_group('Multimodal')
|
||||||
|
Loading…
Reference in New Issue
Block a user