├── FastChat ├── .github │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows │ │ └── python-package.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── assets │ ├── demo_narrow.gif │ ├── qa_browser.png │ ├── screenshot_cli.png │ ├── screenshot_gui.png │ ├── server_arch.png │ └── vicuna_logo.jpeg ├── docker │ ├── Dockerfile │ └── docker-compose.yml ├── docs │ ├── arena.md │ ├── awq.md │ ├── commands │ │ ├── conv_release.md │ │ ├── data_cleaning.md │ │ ├── leaderboard.md │ │ ├── local_cluster.md │ │ ├── pypi.md │ │ ├── test_process.md │ │ └── webserver.md │ ├── dataset_release.md │ ├── exllama_v2.md │ ├── gptq.md │ ├── langchain_integration.md │ ├── model_support.md │ ├── openai_api.md │ ├── server_arch.md │ ├── training.md │ ├── vicuna_weights_version.md │ └── vllm_integration.md ├── fastchat │ ├── __init__.py │ ├── constants.py │ ├── conversation.py │ ├── data │ │ ├── __init__.py │ │ ├── clean_sharegpt.py │ │ ├── convert_alpaca.py │ │ ├── extract_gpt4_only.py │ │ ├── extract_single_round.py │ │ ├── filter_wrong_format.py │ │ ├── get_stats.py │ │ ├── hardcoded_questions.py │ │ ├── inspect_data.py │ │ ├── merge.py │ │ ├── optional_clean.py │ │ ├── optional_replace.py │ │ ├── prepare_all.py │ │ ├── pretty_json.py │ │ ├── sample.py │ │ ├── split_long_conversation.py │ │ └── split_train_test.py │ ├── llm_judge │ │ ├── README.md │ │ ├── clean_judgment.py │ │ ├── common.py │ │ ├── compute_agreement.py │ │ ├── data │ │ │ ├── judge_prompts.jsonl │ │ │ ├── mt_bench │ │ │ │ ├── misc │ │ │ │ │ └── radar.png │ │ │ │ ├── question.jsonl │ │ │ │ └── reference_answer │ │ │ │ │ └── gpt-4.jsonl │ │ │ └── vicuna_bench │ │ │ │ ├── question.jsonl │ │ │ │ └── reference_answer │ │ │ │ └── gpt-4.jsonl │ │ ├── download_mt_bench_pregenerated.py │ │ ├── gen_api_answer.py │ │ ├── gen_judgment.py │ │ ├── gen_model_answer.py │ │ ├── qa_browser.py │ │ └── show_result.py │ ├── model │ │ ├── __init__.py │ │ ├── apply_delta.py │ │ ├── apply_lora.py │ │ ├── compression.py │ │ ├── convert_fp16.py │ │ ├── llama_condense_monkey_patch.py │ │ ├── make_delta.py │ │ ├── model_adapter.py │ │ ├── model_chatglm.py │ │ ├── model_codet5p.py │ │ ├── model_exllama.py │ │ ├── model_falcon.py │ │ ├── model_registry.py │ │ ├── monkey_patch_non_inplace.py │ │ ├── rwkv_model.py │ │ └── upload_hub.py │ ├── modules │ │ ├── __init__.py │ │ ├── awq.py │ │ ├── exllama.py │ │ └── gptq.py │ ├── protocol │ │ ├── api_protocol.py │ │ └── openai_api_protocol.py │ ├── serve │ │ ├── __init__.py │ │ ├── api_provider.py │ │ ├── base_model_worker.py │ │ ├── cli.py │ │ ├── controller.py │ │ ├── gateway │ │ │ ├── README.md │ │ │ └── nginx.conf │ │ ├── gradio_block_arena_anony.py │ │ ├── gradio_block_arena_named.py │ │ ├── gradio_web_server.py │ │ ├── gradio_web_server_multi.py │ │ ├── huggingface_api.py │ │ ├── huggingface_api_worker.py │ │ ├── inference.py │ │ ├── launch_all_serve.py │ │ ├── model_worker.py │ │ ├── monitor │ │ │ ├── basic_stats.py │ │ │ ├── clean_battle_data.py │ │ │ ├── clean_chat_data.py │ │ │ ├── dataset_release_scripts │ │ │ │ ├── arena_33k │ │ │ │ │ ├── count_unique_users.py │ │ │ │ │ ├── filter_bad_conv.py │ │ │ │ │ ├── merge_field.py │ │ │ │ │ ├── sample.py │ │ │ │ │ └── upload_hf_dataset.py │ │ │ │ └── lmsys_chat_1m │ │ │ │ │ ├── approve_all.py │ │ │ │ │ ├── compute_stats.py │ │ │ │ │ ├── filter_bad_conv.py │ │ │ │ │ ├── final_post_processing.py │ │ │ │ │ ├── instructions.md │ │ │ │ │ ├── merge_oai_tag.py │ │ │ │ │ ├── process_all.sh │ │ │ │ │ ├── sample.py │ │ │ │ │ └── upload_hf_dataset.py │ │ │ ├── elo_analysis.py │ │ │ ├── inspect_conv.py │ │ │ ├── intersect_conv_file.py │ │ │ ├── leaderboard_csv_to_html.py │ │ │ ├── monitor.py │ │ │ ├── summarize_cluster.py │ │ │ ├── tag_openai_moderation.py │ │ │ └── topic_clustering.py │ │ ├── multi_model_worker.py │ │ ├── openai_api_server.py │ │ ├── register_worker.py │ │ ├── shutdown_serve.py │ │ ├── test_message.py │ │ ├── test_throughput.py │ │ └── vllm_worker.py │ ├── train │ │ ├── llama2_flash_attn_monkey_patch.py │ │ ├── llama_flash_attn_monkey_patch.py │ │ ├── llama_xformers_attn_monkey_patch.py │ │ ├── train.py │ │ ├── train_baichuan.py │ │ ├── train_flant5.py │ │ ├── train_lora.py │ │ ├── train_lora_t5.py │ │ ├── train_mem.py │ │ └── train_xformers.py │ └── utils.py ├── format.sh ├── playground │ ├── deepspeed_config_s2.json │ ├── deepspeed_config_s3.json │ └── test_embedding │ │ ├── README.md │ │ ├── test_classification.py │ │ ├── test_semantic_search.py │ │ └── test_sentence_similarity.py ├── pyproject.toml ├── scripts │ ├── test_readme_train.sh │ ├── train_lora.sh │ ├── train_vicuna_13b.sh │ ├── train_vicuna_7b.sh │ └── upload_pypi.sh └── tests │ ├── killall_python.sh │ ├── launch_openai_api_test_server.py │ ├── test_cli.py │ ├── test_cli_inputs.txt │ ├── test_openai_api.py │ └── test_openai_langchain.py ├── MSGD_dataset_final.json ├── README.md ├── create_dataset ├── sample │ ├── salesbot1_datasets │ │ └── train_CoT.json │ └── salesbot2_datasets │ │ ├── test_CoT.json │ │ └── train_CoT.json └── utils │ ├── __pycache__ │ ├── datasets.cpython-310.pyc │ └── datasets.cpython-37.pyc │ ├── create_salesbot1_datasets.py │ └── create_salesbot2_datasets.py ├── eval ├── compute_the_score.py ├── eval_with_gpt4.py ├── eval_with_gpt4_turn.py ├── get_score_and_eval_by_turn.py └── gpt4-score.txt ├── salesbot2_prompt └── Merge_SGD.json ├── scripts ├── generate_prompt.py ├── inference.py ├── interactive.py ├── run_conv_localhost.py ├── run_finetune.sh ├── run_user_server.sh └── sanity_check.py └── src ├── __pycache__ ├── prompt_templates.cpython-310.pyc └── utils.cpython-310.pyc ├── prompt_templates.py └── utils.py /FastChat/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /FastChat/.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /FastChat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/.gitignore -------------------------------------------------------------------------------- /FastChat/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/.pylintrc -------------------------------------------------------------------------------- /FastChat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/LICENSE -------------------------------------------------------------------------------- /FastChat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/README.md -------------------------------------------------------------------------------- /FastChat/assets/demo_narrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/assets/demo_narrow.gif -------------------------------------------------------------------------------- /FastChat/assets/qa_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/assets/qa_browser.png -------------------------------------------------------------------------------- /FastChat/assets/screenshot_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/assets/screenshot_cli.png -------------------------------------------------------------------------------- /FastChat/assets/screenshot_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/assets/screenshot_gui.png -------------------------------------------------------------------------------- /FastChat/assets/server_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/assets/server_arch.png -------------------------------------------------------------------------------- /FastChat/assets/vicuna_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/assets/vicuna_logo.jpeg -------------------------------------------------------------------------------- /FastChat/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docker/Dockerfile -------------------------------------------------------------------------------- /FastChat/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docker/docker-compose.yml -------------------------------------------------------------------------------- /FastChat/docs/arena.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/arena.md -------------------------------------------------------------------------------- /FastChat/docs/awq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/awq.md -------------------------------------------------------------------------------- /FastChat/docs/commands/conv_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/conv_release.md -------------------------------------------------------------------------------- /FastChat/docs/commands/data_cleaning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/data_cleaning.md -------------------------------------------------------------------------------- /FastChat/docs/commands/leaderboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/leaderboard.md -------------------------------------------------------------------------------- /FastChat/docs/commands/local_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/local_cluster.md -------------------------------------------------------------------------------- /FastChat/docs/commands/pypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/pypi.md -------------------------------------------------------------------------------- /FastChat/docs/commands/test_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/test_process.md -------------------------------------------------------------------------------- /FastChat/docs/commands/webserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/commands/webserver.md -------------------------------------------------------------------------------- /FastChat/docs/dataset_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/dataset_release.md -------------------------------------------------------------------------------- /FastChat/docs/exllama_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/exllama_v2.md -------------------------------------------------------------------------------- /FastChat/docs/gptq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/gptq.md -------------------------------------------------------------------------------- /FastChat/docs/langchain_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/langchain_integration.md -------------------------------------------------------------------------------- /FastChat/docs/model_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/model_support.md -------------------------------------------------------------------------------- /FastChat/docs/openai_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/openai_api.md -------------------------------------------------------------------------------- /FastChat/docs/server_arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/server_arch.md -------------------------------------------------------------------------------- /FastChat/docs/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/training.md -------------------------------------------------------------------------------- /FastChat/docs/vicuna_weights_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/vicuna_weights_version.md -------------------------------------------------------------------------------- /FastChat/docs/vllm_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/docs/vllm_integration.md -------------------------------------------------------------------------------- /FastChat/fastchat/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.31" 2 | -------------------------------------------------------------------------------- /FastChat/fastchat/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/constants.py -------------------------------------------------------------------------------- /FastChat/fastchat/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/conversation.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastChat/fastchat/data/clean_sharegpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/clean_sharegpt.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/convert_alpaca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/convert_alpaca.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/extract_gpt4_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/extract_gpt4_only.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/extract_single_round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/extract_single_round.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/filter_wrong_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/filter_wrong_format.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/get_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/get_stats.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/hardcoded_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/hardcoded_questions.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/inspect_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/inspect_data.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/merge.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/optional_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/optional_clean.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/optional_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/optional_replace.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/prepare_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/prepare_all.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/pretty_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/pretty_json.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/sample.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/split_long_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/split_long_conversation.py -------------------------------------------------------------------------------- /FastChat/fastchat/data/split_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/data/split_train_test.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/README.md -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/clean_judgment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/clean_judgment.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/common.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/compute_agreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/compute_agreement.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/data/judge_prompts.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/data/judge_prompts.jsonl -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/data/mt_bench/misc/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/data/mt_bench/misc/radar.png -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/data/mt_bench/question.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/data/mt_bench/question.jsonl -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/data/mt_bench/reference_answer/gpt-4.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/data/mt_bench/reference_answer/gpt-4.jsonl -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/data/vicuna_bench/question.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/data/vicuna_bench/question.jsonl -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/data/vicuna_bench/reference_answer/gpt-4.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/data/vicuna_bench/reference_answer/gpt-4.jsonl -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/download_mt_bench_pregenerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/download_mt_bench_pregenerated.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/gen_api_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/gen_api_answer.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/gen_judgment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/gen_judgment.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/gen_model_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/gen_model_answer.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/qa_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/qa_browser.py -------------------------------------------------------------------------------- /FastChat/fastchat/llm_judge/show_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/llm_judge/show_result.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/__init__.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/apply_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/apply_delta.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/apply_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/apply_lora.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/compression.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/convert_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/convert_fp16.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/llama_condense_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/llama_condense_monkey_patch.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/make_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/make_delta.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/model_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/model_adapter.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/model_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/model_chatglm.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/model_codet5p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/model_codet5p.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/model_exllama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/model_exllama.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/model_falcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/model_falcon.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/model_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/model_registry.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/monkey_patch_non_inplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/monkey_patch_non_inplace.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/rwkv_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/rwkv_model.py -------------------------------------------------------------------------------- /FastChat/fastchat/model/upload_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/model/upload_hub.py -------------------------------------------------------------------------------- /FastChat/fastchat/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastChat/fastchat/modules/awq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/modules/awq.py -------------------------------------------------------------------------------- /FastChat/fastchat/modules/exllama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/modules/exllama.py -------------------------------------------------------------------------------- /FastChat/fastchat/modules/gptq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/modules/gptq.py -------------------------------------------------------------------------------- /FastChat/fastchat/protocol/api_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/protocol/api_protocol.py -------------------------------------------------------------------------------- /FastChat/fastchat/protocol/openai_api_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/protocol/openai_api_protocol.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastChat/fastchat/serve/api_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/api_provider.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/base_model_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/base_model_worker.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/cli.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/controller.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/gateway/README.md -------------------------------------------------------------------------------- /FastChat/fastchat/serve/gateway/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/gateway/nginx.conf -------------------------------------------------------------------------------- /FastChat/fastchat/serve/gradio_block_arena_anony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/gradio_block_arena_anony.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/gradio_block_arena_named.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/gradio_block_arena_named.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/gradio_web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/gradio_web_server.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/gradio_web_server_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/gradio_web_server_multi.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/huggingface_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/huggingface_api.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/huggingface_api_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/huggingface_api_worker.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/inference.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/launch_all_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/launch_all_serve.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/model_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/model_worker.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/basic_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/basic_stats.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/clean_battle_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/clean_battle_data.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/clean_chat_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/clean_chat_data.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/count_unique_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/count_unique_users.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/filter_bad_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/filter_bad_conv.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/merge_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/merge_field.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/sample.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/upload_hf_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/arena_33k/upload_hf_dataset.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/approve_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/approve_all.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/compute_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/compute_stats.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/filter_bad_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/filter_bad_conv.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/final_post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/final_post_processing.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/instructions.md -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/merge_oai_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/merge_oai_tag.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/process_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/process_all.sh -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/sample.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/upload_hf_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/dataset_release_scripts/lmsys_chat_1m/upload_hf_dataset.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/elo_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/elo_analysis.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/inspect_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/inspect_conv.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/intersect_conv_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/intersect_conv_file.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/leaderboard_csv_to_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/leaderboard_csv_to_html.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/monitor.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/summarize_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/summarize_cluster.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/tag_openai_moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/tag_openai_moderation.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/monitor/topic_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/monitor/topic_clustering.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/multi_model_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/multi_model_worker.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/openai_api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/openai_api_server.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/register_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/register_worker.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/shutdown_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/shutdown_serve.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/test_message.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/test_throughput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/test_throughput.py -------------------------------------------------------------------------------- /FastChat/fastchat/serve/vllm_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/serve/vllm_worker.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/llama2_flash_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/llama2_flash_attn_monkey_patch.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/llama_flash_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/llama_flash_attn_monkey_patch.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/llama_xformers_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/llama_xformers_attn_monkey_patch.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train_baichuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train_baichuan.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train_flant5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train_flant5.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train_lora.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train_lora_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train_lora_t5.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train_mem.py -------------------------------------------------------------------------------- /FastChat/fastchat/train/train_xformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/train/train_xformers.py -------------------------------------------------------------------------------- /FastChat/fastchat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/fastchat/utils.py -------------------------------------------------------------------------------- /FastChat/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/format.sh -------------------------------------------------------------------------------- /FastChat/playground/deepspeed_config_s2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/playground/deepspeed_config_s2.json -------------------------------------------------------------------------------- /FastChat/playground/deepspeed_config_s3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/playground/deepspeed_config_s3.json -------------------------------------------------------------------------------- /FastChat/playground/test_embedding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/playground/test_embedding/README.md -------------------------------------------------------------------------------- /FastChat/playground/test_embedding/test_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/playground/test_embedding/test_classification.py -------------------------------------------------------------------------------- /FastChat/playground/test_embedding/test_semantic_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/playground/test_embedding/test_semantic_search.py -------------------------------------------------------------------------------- /FastChat/playground/test_embedding/test_sentence_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/playground/test_embedding/test_sentence_similarity.py -------------------------------------------------------------------------------- /FastChat/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/pyproject.toml -------------------------------------------------------------------------------- /FastChat/scripts/test_readme_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/scripts/test_readme_train.sh -------------------------------------------------------------------------------- /FastChat/scripts/train_lora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/scripts/train_lora.sh -------------------------------------------------------------------------------- /FastChat/scripts/train_vicuna_13b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/scripts/train_vicuna_13b.sh -------------------------------------------------------------------------------- /FastChat/scripts/train_vicuna_7b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/scripts/train_vicuna_7b.sh -------------------------------------------------------------------------------- /FastChat/scripts/upload_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/scripts/upload_pypi.sh -------------------------------------------------------------------------------- /FastChat/tests/killall_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/tests/killall_python.sh -------------------------------------------------------------------------------- /FastChat/tests/launch_openai_api_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/tests/launch_openai_api_test_server.py -------------------------------------------------------------------------------- /FastChat/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/tests/test_cli.py -------------------------------------------------------------------------------- /FastChat/tests/test_cli_inputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/tests/test_cli_inputs.txt -------------------------------------------------------------------------------- /FastChat/tests/test_openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/tests/test_openai_api.py -------------------------------------------------------------------------------- /FastChat/tests/test_openai_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/FastChat/tests/test_openai_langchain.py -------------------------------------------------------------------------------- /MSGD_dataset_final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/MSGD_dataset_final.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/README.md -------------------------------------------------------------------------------- /create_dataset/sample/salesbot1_datasets/train_CoT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/sample/salesbot1_datasets/train_CoT.json -------------------------------------------------------------------------------- /create_dataset/sample/salesbot2_datasets/test_CoT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/sample/salesbot2_datasets/test_CoT.json -------------------------------------------------------------------------------- /create_dataset/sample/salesbot2_datasets/train_CoT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/sample/salesbot2_datasets/train_CoT.json -------------------------------------------------------------------------------- /create_dataset/utils/__pycache__/datasets.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/utils/__pycache__/datasets.cpython-310.pyc -------------------------------------------------------------------------------- /create_dataset/utils/__pycache__/datasets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/utils/__pycache__/datasets.cpython-37.pyc -------------------------------------------------------------------------------- /create_dataset/utils/create_salesbot1_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/utils/create_salesbot1_datasets.py -------------------------------------------------------------------------------- /create_dataset/utils/create_salesbot2_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/create_dataset/utils/create_salesbot2_datasets.py -------------------------------------------------------------------------------- /eval/compute_the_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/eval/compute_the_score.py -------------------------------------------------------------------------------- /eval/eval_with_gpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/eval/eval_with_gpt4.py -------------------------------------------------------------------------------- /eval/eval_with_gpt4_turn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/eval/eval_with_gpt4_turn.py -------------------------------------------------------------------------------- /eval/get_score_and_eval_by_turn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/eval/get_score_and_eval_by_turn.py -------------------------------------------------------------------------------- /eval/gpt4-score.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/eval/gpt4-score.txt -------------------------------------------------------------------------------- /salesbot2_prompt/Merge_SGD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/salesbot2_prompt/Merge_SGD.json -------------------------------------------------------------------------------- /scripts/generate_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/generate_prompt.py -------------------------------------------------------------------------------- /scripts/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/inference.py -------------------------------------------------------------------------------- /scripts/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/interactive.py -------------------------------------------------------------------------------- /scripts/run_conv_localhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/run_conv_localhost.py -------------------------------------------------------------------------------- /scripts/run_finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/run_finetune.sh -------------------------------------------------------------------------------- /scripts/run_user_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/run_user_server.sh -------------------------------------------------------------------------------- /scripts/sanity_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/scripts/sanity_check.py -------------------------------------------------------------------------------- /src/__pycache__/prompt_templates.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/src/__pycache__/prompt_templates.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/src/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/prompt_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/src/prompt_templates.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiuLab/SalesAgent/HEAD/src/utils.py --------------------------------------------------------------------------------