Skip to content

Releases: BerriAI/litellm

v1.16-test2

09 Jan 13:35
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.16.21...v1.16-test2

v1.16.19

08 Jan 07:36
Compare
Choose a tag to compare

Full Changelog: v1.16.6...v1.16.19

v1.16.18

08 Jan 06:37
Compare
Choose a tag to compare

Full Changelog: v1.16.17...v1.16.18

v1.16.17-test3

08 Jan 14:26
Compare
Choose a tag to compare

What's Changed

  • fix(proxy_server.py): add support for passing in config file via worker_config directly + testing by @krrishdholakia in #1367

Full Changelog: v1.16.17-test...v1.16.17-test3

v1.16.17-test

08 Jan 12:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.16.19...v1.16.17-test

v1.16.17

08 Jan 05:54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.16.16...v1.16.17

v1.16.6

08 Jan 07:05
442ebdd
Compare
Choose a tag to compare

Full Changelog: v1.16.18...v1.16.6

v1.16.16

06 Jan 17:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.16.15...v1.16.16

v1.16.15

06 Jan 11:25
Compare
Choose a tag to compare

litellm 1.16.5

What's Changed

async def _test():
      response = await litellm.aembedding(
          model="azure/azure-embedding-model",
          input=["good morning from litellm", "gm"],
      )
  
      print(response)
  
      return response
  
  response = asyncio.run(_test())
  
  cost = litellm.completion_cost(completion_response=response)
  • litellm.completion_cost() raises exceptions (instead of swallowing exceptions) @jeromeroussin
  • Improved token counting for azure streaming responses @langgg0511 #1304
  • set os.environ/ variables for litellm proxy cache @Manouchehri
model_list:
  - model_name: gpt-3.5-turbo
    litellm_params:
      model: gpt-3.5-turbo
  - model_name: text-embedding-ada-002
    litellm_params:
      model: text-embedding-ada-002

litellm_settings:
  set_verbose: True
  cache: True          # set cache responses to True
  cache_params:        # set cache params for s3
    type: s3
    s3_bucket_name: cache-bucket-litellm   # AWS Bucket Name for S3
    s3_region_name: us-west-2              # AWS Region Name for S3
    s3_aws_access_key_id: os.environ/AWS_ACCESS_KEY_ID  # us os.environ/<variable name> to pass environment variables. This is AWS Access Key ID for S3
    s3_aws_secret_access_key: os.environ/AWS_SECRET_ACCESS_KEY  # AWS Secret Access Key for S3

Full Changelog: 1.16.14...v1.16.15

1.16.14

06 Jan 09:42
Compare
Choose a tag to compare

Full Changelog: v1.16.13...1.16.14