exposing a model list

This commit is contained in:
Krrish Dholakia 2023-08-02 17:22:34 -07:00
parent 70b5942c4d
commit 3f2580c6ee
6 changed files with 4 additions and 2 deletions

View file

@ -22,6 +22,8 @@ anthropic_models = [
"claude-instant-1"
]
model_list = open_ai_chat_completion_models + open_ai_text_completion_models + cohere_models + anthropic_models
####### EMBEDDING MODELS ###################
open_ai_embedding_models = [
'text-embedding-ada-002'

Binary file not shown.

BIN
dist/litellm-0.1.219.tar.gz vendored Normal file

Binary file not shown.

View file

@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: litellm
Version: 0.1.218
Version: 0.1.219
Summary: Library to easily interface with LLM API providers
Author: BerriAI
License-File: LICENSE

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='litellm',
version='0.1.218',
version='0.1.219',
description='Library to easily interface with LLM API providers',
author='BerriAI',
packages=[