forked from phoenix/litellm-mirror
Merge branch 'main' into litellm_response_cost_logging
This commit is contained in:
commit
e7f83602d8
10 changed files with 203 additions and 43 deletions
|
@ -32,8 +32,9 @@ This covers:
|
||||||
- **Customize Logging, Guardrails, Caching per project**
|
- **Customize Logging, Guardrails, Caching per project**
|
||||||
- ✅ [Team Based Logging](./proxy/team_logging.md) - Allow each team to use their own Langfuse Project / custom callbacks
|
- ✅ [Team Based Logging](./proxy/team_logging.md) - Allow each team to use their own Langfuse Project / custom callbacks
|
||||||
- ✅ [Disable Logging for a Team](./proxy/team_logging.md#disable-logging-for-a-team) - Switch off all logging for a team/project (GDPR Compliance)
|
- ✅ [Disable Logging for a Team](./proxy/team_logging.md#disable-logging-for-a-team) - Switch off all logging for a team/project (GDPR Compliance)
|
||||||
- **Spend Tracking**
|
- **Spend Tracking & Data Exports**
|
||||||
- ✅ [Tracking Spend for Custom Tags](./proxy/enterprise#tracking-spend-for-custom-tags)
|
- ✅ [Tracking Spend for Custom Tags](./proxy/enterprise#tracking-spend-for-custom-tags)
|
||||||
|
- ✅ [Exporting LLM Logs to GCS Bucket](./proxy/bucket#🪣-logging-gcs-s3-buckets)
|
||||||
- ✅ [API Endpoints to get Spend Reports per Team, API Key, Customer](./proxy/cost_tracking.md#✨-enterprise-api-endpoints-to-get-spend)
|
- ✅ [API Endpoints to get Spend Reports per Team, API Key, Customer](./proxy/cost_tracking.md#✨-enterprise-api-endpoints-to-get-spend)
|
||||||
- **Advanced Metrics**
|
- **Advanced Metrics**
|
||||||
- ✅ [`x-ratelimit-remaining-requests`, `x-ratelimit-remaining-tokens` for LLM APIs on Prometheus](./proxy/prometheus#✨-enterprise-llm-remaining-requests-and-remaining-tokens)
|
- ✅ [`x-ratelimit-remaining-requests`, `x-ratelimit-remaining-tokens` for LLM APIs on Prometheus](./proxy/prometheus#✨-enterprise-llm-remaining-requests-and-remaining-tokens)
|
||||||
|
|
|
@ -833,7 +833,11 @@ curl --location 'http://0.0.0.0:4000/chat/completions' \
|
||||||
|
|
||||||
| Model Name | Function Call |
|
| Model Name | Function Call |
|
||||||
|------------------|--------------------------------------|
|
|------------------|--------------------------------------|
|
||||||
| meta/llama3-405b-instruct-maas | `completion('vertex_ai/mistral-large@2407', messages)` |
|
| mistral-large@latest | `completion('vertex_ai/mistral-large@latest', messages)` |
|
||||||
|
| mistral-large@2407 | `completion('vertex_ai/mistral-large@2407', messages)` |
|
||||||
|
| mistral-nemo@latest | `completion('vertex_ai/mistral-nemo@latest', messages)` |
|
||||||
|
| codestral@latest | `completion('vertex_ai/codestral@latest', messages)` |
|
||||||
|
| codestral@@2405 | `completion('vertex_ai/codestral@2405', messages)` |
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
|
@ -866,12 +870,12 @@ print("\nModel Response", response)
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
model_list:
|
model_list:
|
||||||
- model_name: anthropic-mistral
|
- model_name: vertex-mistral
|
||||||
litellm_params:
|
litellm_params:
|
||||||
model: vertex_ai/mistral-large@2407
|
model: vertex_ai/mistral-large@2407
|
||||||
vertex_ai_project: "my-test-project"
|
vertex_ai_project: "my-test-project"
|
||||||
vertex_ai_location: "us-east-1"
|
vertex_ai_location: "us-east-1"
|
||||||
- model_name: anthropic-mistral
|
- model_name: vertex-mistral
|
||||||
litellm_params:
|
litellm_params:
|
||||||
model: vertex_ai/mistral-large@2407
|
model: vertex_ai/mistral-large@2407
|
||||||
vertex_ai_project: "my-test-project"
|
vertex_ai_project: "my-test-project"
|
||||||
|
@ -893,7 +897,7 @@ curl --location 'http://0.0.0.0:4000/chat/completions' \
|
||||||
--header 'Authorization: Bearer sk-1234' \
|
--header 'Authorization: Bearer sk-1234' \
|
||||||
--header 'Content-Type: application/json' \
|
--header 'Content-Type: application/json' \
|
||||||
--data '{
|
--data '{
|
||||||
"model": "anthropic-mistral", # 👈 the 'model_name' in config
|
"model": "vertex-mistral", # 👈 the 'model_name' in config
|
||||||
"messages": [
|
"messages": [
|
||||||
{
|
{
|
||||||
"role": "user",
|
"role": "user",
|
||||||
|
@ -907,6 +911,94 @@ curl --location 'http://0.0.0.0:4000/chat/completions' \
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Usage - Codestral FIM
|
||||||
|
|
||||||
|
Call Codestral on VertexAI via the OpenAI [`/v1/completion`](https://platform.openai.com/docs/api-reference/completions/create) endpoint for FIM tasks.
|
||||||
|
|
||||||
|
Note: You can also call Codestral via `/chat/completion`.
|
||||||
|
|
||||||
|
<Tabs>
|
||||||
|
<TabItem value="sdk" label="SDK">
|
||||||
|
|
||||||
|
```python
|
||||||
|
from litellm import completion
|
||||||
|
import os
|
||||||
|
|
||||||
|
# os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = ""
|
||||||
|
# OR run `!gcloud auth print-access-token` in your terminal
|
||||||
|
|
||||||
|
model = "codestral@2405"
|
||||||
|
|
||||||
|
vertex_ai_project = "your-vertex-project" # can also set this as os.environ["VERTEXAI_PROJECT"]
|
||||||
|
vertex_ai_location = "your-vertex-location" # can also set this as os.environ["VERTEXAI_LOCATION"]
|
||||||
|
|
||||||
|
response = text_completion(
|
||||||
|
model="vertex_ai/" + model,
|
||||||
|
vertex_ai_project=vertex_ai_project,
|
||||||
|
vertex_ai_location=vertex_ai_location,
|
||||||
|
prompt="def is_odd(n): \n return n % 2 == 1 \ndef test_is_odd():",
|
||||||
|
suffix="return True", # optional
|
||||||
|
temperature=0, # optional
|
||||||
|
top_p=1, # optional
|
||||||
|
max_tokens=10, # optional
|
||||||
|
min_tokens=10, # optional
|
||||||
|
seed=10, # optional
|
||||||
|
stop=["return"], # optional
|
||||||
|
)
|
||||||
|
|
||||||
|
print("\nModel Response", response)
|
||||||
|
```
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="proxy" label="Proxy">
|
||||||
|
|
||||||
|
**1. Add to config**
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
model_list:
|
||||||
|
- model_name: vertex-codestral
|
||||||
|
litellm_params:
|
||||||
|
model: vertex_ai/codestral@2405
|
||||||
|
vertex_ai_project: "my-test-project"
|
||||||
|
vertex_ai_location: "us-east-1"
|
||||||
|
- model_name: vertex-codestral
|
||||||
|
litellm_params:
|
||||||
|
model: vertex_ai/codestral@2405
|
||||||
|
vertex_ai_project: "my-test-project"
|
||||||
|
vertex_ai_location: "us-west-1"
|
||||||
|
```
|
||||||
|
|
||||||
|
**2. Start proxy**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
litellm --config /path/to/config.yaml
|
||||||
|
|
||||||
|
# RUNNING at http://0.0.0.0:4000
|
||||||
|
```
|
||||||
|
|
||||||
|
**3. Test it!**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
curl -X POST 'http://0.0.0.0:4000/completions' \
|
||||||
|
-H 'Authorization: Bearer sk-1234' \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d '{
|
||||||
|
"model": "vertex-codestral", # 👈 the 'model_name' in config
|
||||||
|
"prompt": "def is_odd(n): \n return n % 2 == 1 \ndef test_is_odd():",
|
||||||
|
"suffix":"return True", # optional
|
||||||
|
"temperature":0, # optional
|
||||||
|
"top_p":1, # optional
|
||||||
|
"max_tokens":10, # optional
|
||||||
|
"min_tokens":10, # optional
|
||||||
|
"seed":10, # optional
|
||||||
|
"stop":["return"], # optional
|
||||||
|
}'
|
||||||
|
```
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
|
||||||
## Model Garden
|
## Model Garden
|
||||||
| Model Name | Function Call |
|
| Model Name | Function Call |
|
||||||
|------------------|--------------------------------------|
|
|------------------|--------------------------------------|
|
||||||
|
|
|
@ -26,8 +26,9 @@ Features:
|
||||||
- **Customize Logging, Guardrails, Caching per project**
|
- **Customize Logging, Guardrails, Caching per project**
|
||||||
- ✅ [Team Based Logging](./team_logging.md) - Allow each team to use their own Langfuse Project / custom callbacks
|
- ✅ [Team Based Logging](./team_logging.md) - Allow each team to use their own Langfuse Project / custom callbacks
|
||||||
- ✅ [Disable Logging for a Team](./team_logging.md#disable-logging-for-a-team) - Switch off all logging for a team/project (GDPR Compliance)
|
- ✅ [Disable Logging for a Team](./team_logging.md#disable-logging-for-a-team) - Switch off all logging for a team/project (GDPR Compliance)
|
||||||
- **Enterprise Spend Tracking Features**
|
-- **Spend Tracking & Data Exports**
|
||||||
- ✅ [Tracking Spend for Custom Tags](#tracking-spend-for-custom-tags)
|
- ✅ [Tracking Spend for Custom Tags](#tracking-spend-for-custom-tags)
|
||||||
|
- ✅ [Exporting LLM Logs to GCS Bucket](./proxy/bucket#🪣-logging-gcs-s3-buckets)
|
||||||
- ✅ [`/spend/report` API endpoint](cost_tracking.md#✨-enterprise-api-endpoints-to-get-spend)
|
- ✅ [`/spend/report` API endpoint](cost_tracking.md#✨-enterprise-api-endpoints-to-get-spend)
|
||||||
- **Advanced Metrics**
|
- **Advanced Metrics**
|
||||||
- ✅ [`x-ratelimit-remaining-requests`, `x-ratelimit-remaining-tokens` for LLM APIs on Prometheus](prometheus#✨-enterprise-llm-remaining-requests-and-remaining-tokens)
|
- ✅ [`x-ratelimit-remaining-requests`, `x-ratelimit-remaining-tokens` for LLM APIs on Prometheus](prometheus#✨-enterprise-llm-remaining-requests-and-remaining-tokens)
|
||||||
|
|
|
@ -1,28 +1,33 @@
|
||||||
# What is this?
|
# What is this?
|
||||||
## Controller file for TextCompletionCodestral Integration - https://codestral.com/
|
## Controller file for TextCompletionCodestral Integration - https://codestral.com/
|
||||||
|
|
||||||
from functools import partial
|
import copy
|
||||||
import os, types
|
|
||||||
import traceback
|
|
||||||
import json
|
import json
|
||||||
from enum import Enum
|
import os
|
||||||
import requests, copy # type: ignore
|
|
||||||
import time
|
import time
|
||||||
from typing import Callable, Optional, List, Literal, Union
|
import traceback
|
||||||
|
import types
|
||||||
|
from enum import Enum
|
||||||
|
from functools import partial
|
||||||
|
from typing import Callable, List, Literal, Optional, Union
|
||||||
|
|
||||||
|
import httpx # type: ignore
|
||||||
|
import requests # type: ignore
|
||||||
|
|
||||||
|
import litellm
|
||||||
|
from litellm.litellm_core_utils.core_helpers import map_finish_reason
|
||||||
|
from litellm.llms.custom_httpx.http_handler import AsyncHTTPHandler
|
||||||
|
from litellm.types.llms.databricks import GenericStreamingChunk
|
||||||
from litellm.utils import (
|
from litellm.utils import (
|
||||||
TextCompletionResponse,
|
Choices,
|
||||||
Usage,
|
|
||||||
CustomStreamWrapper,
|
CustomStreamWrapper,
|
||||||
Message,
|
Message,
|
||||||
Choices,
|
TextCompletionResponse,
|
||||||
|
Usage,
|
||||||
)
|
)
|
||||||
from litellm.litellm_core_utils.core_helpers import map_finish_reason
|
|
||||||
from litellm.types.llms.databricks import GenericStreamingChunk
|
|
||||||
import litellm
|
|
||||||
from .prompt_templates.factory import prompt_factory, custom_prompt
|
|
||||||
from litellm.llms.custom_httpx.http_handler import AsyncHTTPHandler
|
|
||||||
from .base import BaseLLM
|
from .base import BaseLLM
|
||||||
import httpx # type: ignore
|
from .prompt_templates.factory import custom_prompt, prompt_factory
|
||||||
|
|
||||||
|
|
||||||
class TextCompletionCodestralError(Exception):
|
class TextCompletionCodestralError(Exception):
|
||||||
|
@ -329,7 +334,12 @@ class CodestralTextCompletion(BaseLLM):
|
||||||
) -> Union[TextCompletionResponse, CustomStreamWrapper]:
|
) -> Union[TextCompletionResponse, CustomStreamWrapper]:
|
||||||
headers = self._validate_environment(api_key, headers)
|
headers = self._validate_environment(api_key, headers)
|
||||||
|
|
||||||
completion_url = api_base or "https://codestral.mistral.ai/v1/fim/completions"
|
if optional_params.pop("custom_endpoint", None) is True:
|
||||||
|
completion_url = api_base
|
||||||
|
else:
|
||||||
|
completion_url = (
|
||||||
|
api_base or "https://codestral.mistral.ai/v1/fim/completions"
|
||||||
|
)
|
||||||
|
|
||||||
if model in custom_prompt_dict:
|
if model in custom_prompt_dict:
|
||||||
# check if the model has a registered custom prompt
|
# check if the model has a registered custom prompt
|
||||||
|
@ -426,6 +436,7 @@ class CodestralTextCompletion(BaseLLM):
|
||||||
return _response
|
return _response
|
||||||
### SYNC COMPLETION
|
### SYNC COMPLETION
|
||||||
else:
|
else:
|
||||||
|
|
||||||
response = requests.post(
|
response = requests.post(
|
||||||
url=completion_url,
|
url=completion_url,
|
||||||
headers=headers,
|
headers=headers,
|
||||||
|
@ -464,8 +475,11 @@ class CodestralTextCompletion(BaseLLM):
|
||||||
headers={},
|
headers={},
|
||||||
) -> TextCompletionResponse:
|
) -> TextCompletionResponse:
|
||||||
|
|
||||||
async_handler = AsyncHTTPHandler(timeout=httpx.Timeout(timeout=timeout))
|
async_handler = AsyncHTTPHandler(
|
||||||
|
timeout=httpx.Timeout(timeout=timeout), concurrent_limit=1
|
||||||
|
)
|
||||||
try:
|
try:
|
||||||
|
|
||||||
response = await async_handler.post(
|
response = await async_handler.post(
|
||||||
api_base, headers=headers, data=json.dumps(data)
|
api_base, headers=headers, data=json.dumps(data)
|
||||||
)
|
)
|
||||||
|
|
|
@ -140,10 +140,10 @@ class VertexAIPartnerModels(BaseLLM):
|
||||||
custom_prompt_dict: dict,
|
custom_prompt_dict: dict,
|
||||||
headers: Optional[dict],
|
headers: Optional[dict],
|
||||||
timeout: Union[float, httpx.Timeout],
|
timeout: Union[float, httpx.Timeout],
|
||||||
|
litellm_params: dict,
|
||||||
vertex_project=None,
|
vertex_project=None,
|
||||||
vertex_location=None,
|
vertex_location=None,
|
||||||
vertex_credentials=None,
|
vertex_credentials=None,
|
||||||
litellm_params=None,
|
|
||||||
logger_fn=None,
|
logger_fn=None,
|
||||||
acompletion: bool = False,
|
acompletion: bool = False,
|
||||||
client=None,
|
client=None,
|
||||||
|
@ -154,6 +154,7 @@ class VertexAIPartnerModels(BaseLLM):
|
||||||
|
|
||||||
from litellm.llms.databricks import DatabricksChatCompletion
|
from litellm.llms.databricks import DatabricksChatCompletion
|
||||||
from litellm.llms.openai import OpenAIChatCompletion
|
from litellm.llms.openai import OpenAIChatCompletion
|
||||||
|
from litellm.llms.text_completion_codestral import CodestralTextCompletion
|
||||||
from litellm.llms.vertex_httpx import VertexLLM
|
from litellm.llms.vertex_httpx import VertexLLM
|
||||||
except Exception:
|
except Exception:
|
||||||
|
|
||||||
|
@ -178,12 +179,7 @@ class VertexAIPartnerModels(BaseLLM):
|
||||||
)
|
)
|
||||||
|
|
||||||
openai_like_chat_completions = DatabricksChatCompletion()
|
openai_like_chat_completions = DatabricksChatCompletion()
|
||||||
|
codestral_fim_completions = CodestralTextCompletion()
|
||||||
## Load Config
|
|
||||||
# config = litellm.VertexAILlama3.get_config()
|
|
||||||
# for k, v in config.items():
|
|
||||||
# if k not in optional_params:
|
|
||||||
# optional_params[k] = v
|
|
||||||
|
|
||||||
## CONSTRUCT API BASE
|
## CONSTRUCT API BASE
|
||||||
stream: bool = optional_params.get("stream", False) or False
|
stream: bool = optional_params.get("stream", False) or False
|
||||||
|
@ -206,6 +202,28 @@ class VertexAIPartnerModels(BaseLLM):
|
||||||
|
|
||||||
model = model.split("@")[0]
|
model = model.split("@")[0]
|
||||||
|
|
||||||
|
if "codestral" in model and litellm_params.get("text_completion") is True:
|
||||||
|
optional_params["model"] = model
|
||||||
|
text_completion_model_response = litellm.TextCompletionResponse(
|
||||||
|
stream=stream
|
||||||
|
)
|
||||||
|
return codestral_fim_completions.completion(
|
||||||
|
model=model,
|
||||||
|
messages=messages,
|
||||||
|
api_base=api_base,
|
||||||
|
api_key=access_token,
|
||||||
|
custom_prompt_dict=custom_prompt_dict,
|
||||||
|
model_response=text_completion_model_response,
|
||||||
|
print_verbose=print_verbose,
|
||||||
|
logging_obj=logging_obj,
|
||||||
|
optional_params=optional_params,
|
||||||
|
acompletion=acompletion,
|
||||||
|
litellm_params=litellm_params,
|
||||||
|
logger_fn=logger_fn,
|
||||||
|
timeout=timeout,
|
||||||
|
encoding=encoding,
|
||||||
|
)
|
||||||
|
|
||||||
return openai_like_chat_completions.completion(
|
return openai_like_chat_completions.completion(
|
||||||
model=model,
|
model=model,
|
||||||
messages=messages,
|
messages=messages,
|
||||||
|
|
|
@ -986,6 +986,7 @@ def completion(
|
||||||
output_cost_per_second=output_cost_per_second,
|
output_cost_per_second=output_cost_per_second,
|
||||||
output_cost_per_token=output_cost_per_token,
|
output_cost_per_token=output_cost_per_token,
|
||||||
cooldown_time=cooldown_time,
|
cooldown_time=cooldown_time,
|
||||||
|
text_completion=kwargs.get("text_completion"),
|
||||||
)
|
)
|
||||||
logging.update_environment_variables(
|
logging.update_environment_variables(
|
||||||
model=model,
|
model=model,
|
||||||
|
@ -2085,7 +2086,7 @@ def completion(
|
||||||
model_response=model_response,
|
model_response=model_response,
|
||||||
print_verbose=print_verbose,
|
print_verbose=print_verbose,
|
||||||
optional_params=new_params,
|
optional_params=new_params,
|
||||||
litellm_params=litellm_params,
|
litellm_params=litellm_params, # type: ignore
|
||||||
logger_fn=logger_fn,
|
logger_fn=logger_fn,
|
||||||
encoding=encoding,
|
encoding=encoding,
|
||||||
vertex_location=vertex_ai_location,
|
vertex_location=vertex_ai_location,
|
||||||
|
|
|
@ -4104,9 +4104,19 @@ async def test_async_text_completion_chat_model_stream():
|
||||||
# asyncio.run(test_async_text_completion_chat_model_stream())
|
# asyncio.run(test_async_text_completion_chat_model_stream())
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"model", ["vertex_ai/codestral@2405", "text-completion-codestral/codestral-2405"] #
|
||||||
|
)
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_completion_codestral_fim_api():
|
async def test_completion_codestral_fim_api(model):
|
||||||
try:
|
try:
|
||||||
|
if model == "vertex_ai/codestral@2405":
|
||||||
|
from litellm.tests.test_amazing_vertex_completion import (
|
||||||
|
load_vertex_ai_credentials,
|
||||||
|
)
|
||||||
|
|
||||||
|
load_vertex_ai_credentials()
|
||||||
|
|
||||||
litellm.set_verbose = True
|
litellm.set_verbose = True
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -4114,7 +4124,7 @@ async def test_completion_codestral_fim_api():
|
||||||
|
|
||||||
verbose_logger.setLevel(level=logging.DEBUG)
|
verbose_logger.setLevel(level=logging.DEBUG)
|
||||||
response = await litellm.atext_completion(
|
response = await litellm.atext_completion(
|
||||||
model="text-completion-codestral/codestral-2405",
|
model=model,
|
||||||
prompt="def is_odd(n): \n return n % 2 == 1 \ndef test_is_odd():",
|
prompt="def is_odd(n): \n return n % 2 == 1 \ndef test_is_odd():",
|
||||||
suffix="return True",
|
suffix="return True",
|
||||||
temperature=0,
|
temperature=0,
|
||||||
|
@ -4137,9 +4147,19 @@ async def test_completion_codestral_fim_api():
|
||||||
pytest.fail(f"Error occurred: {e}")
|
pytest.fail(f"Error occurred: {e}")
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"model",
|
||||||
|
["vertex_ai/codestral@2405", "text-completion-codestral/codestral-2405"],
|
||||||
|
)
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_completion_codestral_fim_api_stream():
|
async def test_completion_codestral_fim_api_stream(model):
|
||||||
try:
|
try:
|
||||||
|
if model == "vertex_ai/codestral@2405":
|
||||||
|
from litellm.tests.test_amazing_vertex_completion import (
|
||||||
|
load_vertex_ai_credentials,
|
||||||
|
)
|
||||||
|
|
||||||
|
load_vertex_ai_credentials()
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from litellm._logging import verbose_logger
|
from litellm._logging import verbose_logger
|
||||||
|
@ -4148,7 +4168,7 @@ async def test_completion_codestral_fim_api_stream():
|
||||||
|
|
||||||
# verbose_logger.setLevel(level=logging.DEBUG)
|
# verbose_logger.setLevel(level=logging.DEBUG)
|
||||||
response = await litellm.atext_completion(
|
response = await litellm.atext_completion(
|
||||||
model="text-completion-codestral/codestral-2405",
|
model=model,
|
||||||
prompt="def is_odd(n): \n return n % 2 == 1 \ndef test_is_odd():",
|
prompt="def is_odd(n): \n return n % 2 == 1 \ndef test_is_odd():",
|
||||||
suffix="return True",
|
suffix="return True",
|
||||||
temperature=0,
|
temperature=0,
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
import litellm
|
|
||||||
from opentelemetry.sdk.trace.export.in_memory_span_exporter import InMemorySpanExporter
|
from opentelemetry.sdk.trace.export.in_memory_span_exporter import InMemorySpanExporter
|
||||||
from traceloop.sdk import Traceloop
|
from traceloop.sdk import Traceloop
|
||||||
|
|
||||||
|
import litellm
|
||||||
|
|
||||||
sys.path.insert(0, os.path.abspath("../.."))
|
sys.path.insert(0, os.path.abspath("../.."))
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,11 +27,11 @@ def exporter():
|
||||||
|
|
||||||
@pytest.mark.parametrize("model", ["claude-instant-1.2", "gpt-3.5-turbo"])
|
@pytest.mark.parametrize("model", ["claude-instant-1.2", "gpt-3.5-turbo"])
|
||||||
def test_traceloop_logging(exporter, model):
|
def test_traceloop_logging(exporter, model):
|
||||||
|
|
||||||
litellm.completion(
|
litellm.completion(
|
||||||
model=model,
|
model=model,
|
||||||
messages=[{"role": "user", "content": "This is a test"}],
|
messages=[{"role": "user", "content": "This is a test"}],
|
||||||
max_tokens=1000,
|
max_tokens=1000,
|
||||||
temperature=0.7,
|
temperature=0.7,
|
||||||
timeout=5,
|
timeout=5,
|
||||||
|
mock_response="hi",
|
||||||
)
|
)
|
||||||
|
|
|
@ -2250,6 +2250,7 @@ def get_litellm_params(
|
||||||
output_cost_per_token=None,
|
output_cost_per_token=None,
|
||||||
output_cost_per_second=None,
|
output_cost_per_second=None,
|
||||||
cooldown_time=None,
|
cooldown_time=None,
|
||||||
|
text_completion=None,
|
||||||
):
|
):
|
||||||
litellm_params = {
|
litellm_params = {
|
||||||
"acompletion": acompletion,
|
"acompletion": acompletion,
|
||||||
|
@ -2273,6 +2274,7 @@ def get_litellm_params(
|
||||||
"output_cost_per_token": output_cost_per_token,
|
"output_cost_per_token": output_cost_per_token,
|
||||||
"output_cost_per_second": output_cost_per_second,
|
"output_cost_per_second": output_cost_per_second,
|
||||||
"cooldown_time": cooldown_time,
|
"cooldown_time": cooldown_time,
|
||||||
|
"text_completion": text_completion,
|
||||||
}
|
}
|
||||||
|
|
||||||
return litellm_params
|
return litellm_params
|
||||||
|
@ -3119,6 +3121,11 @@ def get_optional_params(
|
||||||
model=model, custom_llm_provider=custom_llm_provider
|
model=model, custom_llm_provider=custom_llm_provider
|
||||||
)
|
)
|
||||||
_check_valid_arg(supported_params=supported_params)
|
_check_valid_arg(supported_params=supported_params)
|
||||||
|
if "codestral" in model:
|
||||||
|
optional_params = litellm.MistralTextCompletionConfig().map_openai_params(
|
||||||
|
non_default_params=non_default_params, optional_params=optional_params
|
||||||
|
)
|
||||||
|
else:
|
||||||
optional_params = litellm.MistralConfig().map_openai_params(
|
optional_params = litellm.MistralConfig().map_openai_params(
|
||||||
non_default_params=non_default_params,
|
non_default_params=non_default_params,
|
||||||
optional_params=optional_params,
|
optional_params=optional_params,
|
||||||
|
@ -4231,6 +4238,10 @@ def get_supported_openai_params(
|
||||||
return litellm.VertexAILlama3Config().get_supported_openai_params()
|
return litellm.VertexAILlama3Config().get_supported_openai_params()
|
||||||
if model.startswith("mistral"):
|
if model.startswith("mistral"):
|
||||||
return litellm.MistralConfig().get_supported_openai_params()
|
return litellm.MistralConfig().get_supported_openai_params()
|
||||||
|
if model.startswith("codestral"):
|
||||||
|
return (
|
||||||
|
litellm.MistralTextCompletionConfig().get_supported_openai_params()
|
||||||
|
)
|
||||||
return litellm.VertexAIConfig().get_supported_openai_params()
|
return litellm.VertexAIConfig().get_supported_openai_params()
|
||||||
elif request_type == "embeddings":
|
elif request_type == "embeddings":
|
||||||
return litellm.VertexAITextEmbeddingConfig().get_supported_openai_params()
|
return litellm.VertexAITextEmbeddingConfig().get_supported_openai_params()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue