forked from BerriAI/litellm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
445 changed files
with
116,179 additions
and
9,809 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"name": "Python 3.11", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "mcr.microsoft.com/devcontainers/python:3.11-bookworm", | ||
// https://github.com/devcontainers/images/tree/main/src/python | ||
// https://mcr.microsoft.com/en-us/product/devcontainers/python/tags | ||
|
||
// "build": { | ||
// "dockerfile": "Dockerfile", | ||
// "context": ".." | ||
// }, | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
|
||
// Configure tool-specific properties. | ||
"customizations": { | ||
// Configure properties specific to VS Code. | ||
"vscode": { | ||
"settings": {}, | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"GitHub.copilot", | ||
"GitHub.copilot-chat" | ||
] | ||
} | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [4000], | ||
|
||
"containerEnv": { | ||
"LITELLM_LOG": "DEBUG" | ||
}, | ||
|
||
// Use 'portsAttributes' to set default properties for specific forwarded ports. | ||
// More info: https://containers.dev/implementors/json_reference/#port-attributes | ||
"portsAttributes": { | ||
"4000": { | ||
"label": "LiteLLM Server", | ||
"onAutoForward": "notify" | ||
} | ||
}, | ||
|
||
// More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "litellm", | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "pipx install poetry && poetry install -E extra_proxy -E proxy" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/docs | ||
/cookbook | ||
/.circleci | ||
/.github | ||
/tests | ||
docs | ||
cookbook | ||
.circleci | ||
.github | ||
tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Add the commit hash of any commit you want to ignore in `git blame` here. | ||
# One commit hash per line. | ||
# | ||
# The GitHub Blame UI will use this file automatically! | ||
# | ||
# Run this command to always ignore formatting commits in `git blame` | ||
# git config blame.ignoreRevsFile .git-blame-ignore-revs | ||
|
||
# Update pydantic code to fix warnings (GH-3600) | ||
876840e9957bc7e9f7d6a2b58c4d7c53dad16481 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## Title | ||
|
||
<!-- e.g. "Implement user authentication feature" --> | ||
|
||
## Relevant issues | ||
|
||
<!-- e.g. "Fixes #000" --> | ||
|
||
## Type | ||
|
||
<!-- Select the type of Pull Request --> | ||
<!-- Keep only the necessary ones --> | ||
|
||
🆕 New Feature | ||
🐛 Bug Fix | ||
🧹 Refactoring | ||
📖 Documentation | ||
🚄 Infrastructure | ||
✅ Test | ||
|
||
## Changes | ||
|
||
<!-- List of changes --> | ||
|
||
## [REQUIRED] Testing - Attach a screenshot of any new tests passing locall | ||
If UI changes, send a screenshot/GIF of working UI fixes | ||
|
||
<!-- Test procedure --> | ||
|
Oops, something went wrong.