forked from phoenix/litellm-mirror
fix docs + circle ci
This commit is contained in:
parent
53e76dcd66
commit
e5f9a2be53
2 changed files with 11 additions and 1 deletions
|
@ -8,6 +8,16 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
|
|
||||||
|
- run:
|
||||||
|
name: Check if litellm dir was updated or if pyproject.toml was modified
|
||||||
|
command: |
|
||||||
|
if [ -n "$(git diff --name-only $CIRCLE_SHA1^..$CIRCLE_SHA1 | grep -E 'pyproject\.toml|litellm/')" ]; then
|
||||||
|
echo "litellm updated"
|
||||||
|
else
|
||||||
|
echo "No changes to litellm or pyproject.toml. Skipping tests."
|
||||||
|
circleci step halt
|
||||||
|
fi
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Install Dependencies
|
name: Install Dependencies
|
||||||
command: |
|
command: |
|
||||||
|
|
|
@ -24,7 +24,7 @@ Here's the exact json output and type you can expect from all litellm `completio
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Here's what an example liteLLMresponse looks like
|
Here's what an example response looks like
|
||||||
```python
|
```python
|
||||||
{
|
{
|
||||||
'choices': [
|
'choices': [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue