Skip to content

Commit

Permalink
today
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 6, 2024
1 parent 8a4b55c commit 44ea08d
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13196,3 +13196,12 @@
[submodule "2024/06/05/pandas-ai"]
path = 2024/06/05/pandas-ai
url = https://github.com/Sinaptik-AI/pandas-ai
[submodule "2024/06/06/hydra-booster"]
path = 2024/06/06/hydra-booster
url = https://github.com/libp2p/hydra-booster
[submodule "2024/06/06/aws-cost-saver"]
path = 2024/06/06/aws-cost-saver
url = https://github.com/aramalipoor/aws-cost-saver
[submodule "2024/06/06/org-jira"]
path = 2024/06/06/org-jira
url = https://github.com/ahungry/org-jira
2 changes: 1 addition & 1 deletion 2023/04/29/local-llm/FastChat
Submodule FastChat updated 35 files
+5 −0 .gitignore
+4 −3 README.md
+1 −1 docker/Dockerfile
+33 −0 docs/arena.md
+13 −3 docs/model_support.md
+10 −1 fastchat/constants.py
+494 −27 fastchat/conversation.py
+165 −4 fastchat/model/model_adapter.py
+202 −0 fastchat/model/model_cllm.py
+172 −73 fastchat/model/model_registry.py
+602 −19 fastchat/serve/api_provider.py
+15 −11 fastchat/serve/call_monitor.py
+153 −264 fastchat/serve/gradio_block_arena_anony.py
+43 −18 fastchat/serve/gradio_block_arena_named.py
+244 −96 fastchat/serve/gradio_block_arena_vision.py
+569 −0 fastchat/serve/gradio_block_arena_vision_anony.py
+443 −0 fastchat/serve/gradio_block_arena_vision_named.py
+196 −60 fastchat/serve/gradio_web_server.py
+84 −29 fastchat/serve/gradio_web_server_multi.py
+150 −40 fastchat/serve/monitor/clean_battle_data.py
+1 −1 fastchat/serve/monitor/clean_chat_data.py
+214 −0 fastchat/serve/monitor/criteria_labeling.py
+85 −0 fastchat/serve/monitor/deduplication.py
+319 −66 fastchat/serve/monitor/elo_analysis.py
+524 −100 fastchat/serve/monitor/monitor.py
+5 −0 fastchat/serve/monitor/vote_time_stats/README.md
+120 −0 fastchat/serve/monitor/vote_time_stats/analyze_data.py
+66 −0 fastchat/serve/monitor/vote_time_stats/plot.py
+18 −19 fastchat/serve/openai_api_server.py
+59 −0 fastchat/serve/remote_logger.py
+106 −0 fastchat/serve/vision/create_vqa_examples_dir.py
+111 −14 fastchat/utils.py
+141 −141 playground/FastChat_API_GoogleColab.ipynb
+1 −1 pyproject.toml
+1 −0 theme.json
2 changes: 1 addition & 1 deletion 2024/05/26/coophive
2 changes: 1 addition & 1 deletion 2024/05/26/litellm
Submodule litellm updated 179 files
2 changes: 1 addition & 1 deletion 2024/05/31/openai-cli
1 change: 1 addition & 0 deletions 2024/06/06/aws-cost-saver
Submodule aws-cost-saver added at c64d33
1 change: 1 addition & 0 deletions 2024/06/06/hydra-booster
Submodule hydra-booster added at 515247
1 change: 1 addition & 0 deletions 2024/06/06/org-jira
Submodule org-jira added at 295b01
13 changes: 13 additions & 0 deletions script/today.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

today() {
TODAY=$HOME/`date +'%Y/%m/%d'`
if [ ! -d ${TODAY} ];
then
mkdir -p ${TODAY}
fi
cd ${TODAY}
echo $TODAY
pushd $TODAY
}


0 comments on commit 44ea08d

Please sign in to comment.