mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +00:00
* Nova Canvas complete image generation tasks (#9177) * add initial support for Amazon Nova Canvas model Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * adjust name to AmazonNovaCanvas and map function variables to config Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * tighten model name check Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * fix quality mapping Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * add premium quality in config Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * support all Amazon Nova Canvas tasks * remove unused import Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * add tests for image generation tasks and fix payload Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * add missing util file Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * update model prices backup file Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * remove image tasks other than text->image Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * add color guided generation task for Nova Canvas Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * fix merge Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * add nova canvas image generation documentation Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> * add nova canvas unit tests Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> --------- Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> Co-authored-by: Krish Dholakia <krrishdholakia@gmail.com> * ci(config.yml): bump ci config * test: fix test --------- Signed-off-by: omrishiv <327609+omrishiv@users.noreply.github.com> Co-authored-by: omrishiv <327609+omrishiv@users.noreply.github.com> |
||
---|---|---|
.. | ||
ai21/chat | ||
aiohttp_openai/chat | ||
anthropic | ||
azure | ||
azure_ai | ||
base_llm | ||
bedrock | ||
cerebras | ||
clarifai | ||
cloudflare/chat | ||
codestral/completion | ||
cohere | ||
custom_httpx | ||
databricks | ||
deepgram | ||
deepinfra/chat | ||
deepseek | ||
deprecated_providers | ||
empower/chat | ||
fireworks_ai | ||
friendliai/chat | ||
galadriel/chat | ||
gemini | ||
github/chat | ||
groq | ||
hosted_vllm | ||
huggingface | ||
infinity/rerank | ||
jina_ai | ||
litellm_proxy/chat | ||
lm_studio | ||
mistral | ||
nlp_cloud | ||
nvidia_nim | ||
ollama | ||
oobabooga | ||
openai | ||
openai_like | ||
openrouter | ||
perplexity/chat | ||
petals | ||
predibase | ||
replicate | ||
sagemaker | ||
sambanova | ||
snowflake | ||
together_ai | ||
topaz | ||
triton | ||
vertex_ai | ||
vllm/completion | ||
voyage/embedding | ||
watsonx | ||
xai/chat | ||
__init__.py | ||
base.py | ||
baseten.py | ||
custom_llm.py | ||
maritalk.py | ||
ollama_chat.py | ||
README.md | ||
volcengine.py |
File Structure
August 27th, 2024
To make it easy to see how calls are transformed for each model/provider:
we are working on moving all supported litellm providers to a folder structure, where folder name is the supported litellm provider name.
Each folder will contain a *_transformation.py
file, which has all the request/response transformation logic, making it easy to see how calls are modified.
E.g. cohere/
, bedrock/
.