adding support for gpt-3.5-turbo-16k

This commit is contained in:
Krrish Dholakia 2023-08-02 14:06:15 -07:00
parent 85f1591413
commit acb6781317
13 changed files with 8 additions and 4 deletions

BIN
.DS_Store vendored

Binary file not shown.

View file

@ -5,7 +5,9 @@ telemetry=True
####### COMPLETION MODELS ###################
open_ai_chat_completion_models = [
'gpt-3.5-turbo',
'gpt-4'
'gpt-4',
'gpt-3.5-turbo-16k-0613',
'gpt-3.5-turbo-16k'
]
open_ai_text_completion_models = [
'text-davinci-003'

Binary file not shown.

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

Binary file not shown.

View file

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

View file

@ -5,7 +5,9 @@ telemetry=True
####### COMPLETION MODELS ###################
open_ai_chat_completion_models = [
'gpt-3.5-turbo',
'gpt-4'
'gpt-4',
'gpt-3.5-turbo-16k-0613',
'gpt-3.5-turbo-16k'
]
open_ai_text_completion_models = [
'text-davinci-003'

View file

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