Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding support for gpt-4o-mini #736

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run_uptrain.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mkdir data
echo -e "SERVER_DATA_DIR=$(pwd)/data\nUPTRAIN_LOCAL_URL=http://localhost:4300\nNEXT_PUBLIC_BACKEND_URL=http://localhost:4300/\nNEXT_PUBLIC_BASE_PATH=/dashboard" > .env
docker compose --env-file .env --profile server up
docker compose --env-file .env --profile server up --build
1 change: 1 addition & 0 deletions uptrain/dashboard/frontend/dashboard/src/utils/models.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const models = {
"gpt-3.5-turbo": ["openai_api_key"],
"gpt-4": ["openai_api_key"],
"gpt-4-turbo-preview": ["openai_api_key"],
"gpt-4o-mini": ["openai_api_key"],
"claude-2.1": ["anthropic_api_key"],
"azure-deployment": [
"azure_api_base",
Expand Down